@rline/json
Version:
JSON Schema compiler
28 lines • 709 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "CommonNumberPropertyOptions",
"type": "object",
"properties": {
"isEven": {
"type": "boolean"
},
"isOdd": {
"type": "boolean"
},
"numberFormat": {
"$ref": "../enum/number-format.schema.json"
},
"minimum": {
"type": "number"
},
"maximum": {
"type": "number"
},
"moreThanProperty": {
"$ref": "../name/property-name.schema.json"
},
"lessThanProperty": {
"$ref": "../name/property-name.schema.json"
}
}
}