@rline/json
Version:
JSON Schema compiler
22 lines • 455 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "DatePropertyOptions",
"type": "object",
"properties": {
"type": {
"const": "date"
},
"isFutureDate": {
"type": "boolean"
},
"isPastDate": {
"type": "boolean"
},
"default": {
"type": "string"
}
},
"required": [
"type"
]
}