Skip to content
10 changes: 7 additions & 3 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"value": {
"type": "integer",
"maximum": 4294967295,
Comment thread
peternewman marked this conversation as resolved.
Outdated
"minimum": 0
"minimum": -2147483648
}
},
"required": ["label", "value"]
Expand All @@ -196,10 +196,14 @@
"type": "object",
"properties": {
"lower": {
"type": "integer"
Comment thread
peternewman marked this conversation as resolved.
"type": "integer",
"maximum": 4294967295,
"minimum": -2147483648
},
"upper": {
"type": "integer"
"type": "integer",
"maximum": 4294967295,
"minimum": -2147483648
}
},
"required": ["lower", "upper"]
Expand Down