schemars/schemars/tests/expected/nonzero_ints.json
2019-10-30 19:28:11 +00:00

34 lines
No EOL
616 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "MyStruct",
"type": "object",
"required": [
"nonzero_signed",
"nonzero_unsigned",
"signed",
"unsigned"
],
"properties": {
"nonzero_signed": {
"type": "integer",
"format": "int32",
"not": {
"const": 0
}
},
"nonzero_unsigned": {
"type": "integer",
"format": "uint32",
"minimum": 1.0
},
"signed": {
"type": "integer",
"format": "int32"
},
"unsigned": {
"type": "integer",
"format": "uint32",
"minimum": 0.0
}
}
}