video.schema.json (1012B)
1 { 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "video.schema.json", 4 "title": "Video", 5 "description": "A video", 6 "type": "object", 7 "properties": { 8 "name": { 9 "description": "The video's name", 10 "type": "string" 11 }, 12 "duration": { 13 "description": "The video's duration in seconds", 14 "type": "number" 15 }, 16 "quality": { 17 "description": "A short description of the video's quality (e.g. 'HD', '720p')", 18 "type": "string" 19 }, 20 "show": { 21 "description": "For an episode of a TV show the name of the TV show", 22 "type": "string" 23 }, 24 "season": { 25 "description": "For an episode of a TV show the season number it appears in", 26 "type": "number" 27 }, 28 "episode": { 29 "description": "For an episode of a TV show the number of the episode in the season", 30 "type": "number" 31 }, 32 "genre": { 33 "description": "The genre of the video", 34 "type": "string" 35 } 36 }, 37 "required": ["name"] 38 }