yl_cinema/movie_schema.json

65 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"movie_id": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"version": {
"type": "integer"
},
"license": {
"type": "string"
},
"item": {
"type": "boolean"
},
"replay": {
"type": "boolean"
},
"title_texture": {
"type": "string"
},
"files": {
"type": "array",
"items": {
"type": "string"
}
},
"pages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"order": {
"type": "integer"
},
"texture": {
"type": "string"
},
"caption": {
"type": "string"
},
"captionposx": {
"type": "integer"
},
"captionposy": {
"type": "integer"
},
"duration": {
"type": "number"
}
},
"required": ["order", "texture", "caption", "captionposx", "captionposy", "duration"]
}
}
},
"required": ["movie_id", "name", "description", "version", "license", "item", "replay", "title_texture", "files", "pages"]
}