@rline/json
Version:
JSON Schema compiler
29 lines • 634 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ArrayPropertyOptions",
"type": "object",
"properties": {
"type": {
"const": "array"
},
"default": {
"type": "array",
"items": {
"$ref": "./property.schema.json"
}
},
"minSize": {
"type": "integer"
},
"maxSize": {
"type": "integer"
},
"items": {
"$ref": "./property.schema.json"
}
},
"required": [
"type",
"items"
]
}