33 lines
866 B
JSON
33 lines
866 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"title": {
|
|
"type": "string"
|
|
},
|
|
"options": {
|
|
"type": "object",
|
|
"properties": {
|
|
"delete": {
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": ["delete"],
|
|
"additionalProperties": false
|
|
},
|
|
"folders": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"format": "uri-reference"
|
|
},
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"required": ["title", "options", "folders"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|