Video schema from Discogs API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-video-schema.json", "title": "Video", "description": "Video schema from Discogs API", "type": "object", "properties": { "uri": { "type": "string", "format": "uri" }, "duration": { "type": "integer" }, "title": { "type": "string" }, "description": { "type": "string" }, "embed": { "type": "boolean" } } }