@rline/json
Version:
JSON Schema compiler
43 lines • 1.17 kB
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "NumberPropertyOptions",
"allOf": [
{
"$ref": "./common-number.schema.json"
},
{
"type": "object",
"properties": {
"type": {
"const": "number"
},
"default": {
"type": "number"
},
"isIn": {
"type": "array",
"items": {
"oneOf": [
{
"type": "number"
}
]
}
},
"isNotIn": {
"type": "array",
"items": {
"oneOf": [
{
"type": "number"
}
]
}
}
},
"required": [
"type"
]
}
]
}