Skip to content

Commit

Permalink
added nulls to share_statistics schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Scott committed Jun 1, 2022
1 parent c8c1d74 commit 2dfe6b1
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"type": ["null", "object"],
"properties": {
"paging": {
"type": "object",
"type": ["null", "object"],
"properties": {
"start": {
"type": "integer"
"type": ["null", "integer"]
},
"count": {
"type": "integer"
"type": ["null", "integer"]
},
"links": {
"type": "array",
"type": ["null", "array"],
"items": {}
},
"total": {
"type": "integer"
"type": ["null", "integer"]
}
}
},
"elements": {
"type": "array",
"type": ["null", "array"],
"items": {}
}
}
Expand Down

0 comments on commit 2dfe6b1

Please sign in to comment.