audio.schema.json (839B)
1 { 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "$id": "audio.schema.json", 4 "title": "Audio", 5 "description": "An audio file", 6 "type": "object", 7 "properties": { 8 "name": { 9 "description": "The audio's name", 10 "type": "string" 11 }, 12 "duration": { 13 "description": "The audio's duration in seconds", 14 "type": "number" 15 }, 16 "artist": { 17 "description": "The artist who created the audio", 18 "type": "string" 19 }, 20 "album": { 21 "description": "For music on an album the name of the album", 22 "type": "string" 23 }, 24 "track": { 25 "description": "For music on an album the number of the track on the album", 26 "type": "number" 27 }, 28 "genre": { 29 "description": "The genre of the audio", 30 "type": "string" 31 } 32 }, 33 "required": ["name"] 34 }