{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-track-schema.json", "title": "Track", "description": "Track schema from Discogs API", "type": "object", "properties": { "position": { "type": "string" }, "type_": { "type": "string" }, "title": { "type": "string" }, "duration": { "type": "string" }, "extraartists": { "type": "array", "items": { "$ref": "#/components/schemas/ArtistSummary" } } } }