media-library/.gitapp/schemas/folders.json

24 lines
409 B
JSON

{
"$id": "folders",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"description": {
"type": "string"
},
"parent": {
"type": "string",
"x-relation": {
"collection": "folders",
"type": "single"
}
}
}
}