Skip to content

Commit

Permalink
Don't permit nulls in manifest array fields
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyasminocha committed Jun 23, 2022
1 parent c03f615 commit f9591c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions data/1.0.0-preview-1/schema/manifest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
"type": "array",
"items": {
"title": "Geopolitical Unit",
"type": ["object", "null"],
"type": ["object"],
"properties": {
"object_id": {
"title": "Id",
Expand Down Expand Up @@ -260,7 +260,7 @@
"type": "array",
"items": {
"title": "Party",
"type": ["object", "null"],
"type": ["object"],
"properties": {
"object_id": {
"title": "Id",
Expand Down Expand Up @@ -311,7 +311,7 @@
"type": "array",
"items": {
"title": "Candidate",
"type": ["object", "null"],
"type": ["object"],
"properties": {
"object_id": {
"title": "Id",
Expand Down Expand Up @@ -364,7 +364,7 @@
"type": "array",
"items": {
"title": "Contest",
"type": ["object", "null"],
"type": ["object"],
"properties": {
"object_id": {
"title": "Id",
Expand Down Expand Up @@ -495,7 +495,7 @@
"type": "array",
"items": {
"title": "Ballot Style",
"type": ["object", "null"],
"type": ["object"],
"properties": {
"object_id": {
"title": "Id",
Expand Down

0 comments on commit f9591c7

Please sign in to comment.