{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-structure/discogs-release-summary-structure.json", "name": "ReleaseSummary", "description": "ReleaseSummary schema from Discogs API", "type": "object", "properties": { "id": { "type": "int32" }, "title": { "type": "string" }, "year": { "type": "int32" }, "resource_url": { "type": "uri" }, "thumb": { "type": "uri" }, "cover_image": { "type": "uri" }, "formats": { "type": "array", "items": { "$ref": "#/components/schemas/ReleaseFormat" } }, "labels": { "type": "array", "items": { "$ref": "#/components/schemas/LabelSummary" } }, "artists": { "type": "array", "items": { "$ref": "#/components/schemas/ArtistSummary" } }, "genres": { "type": "array", "items": { "type": "string" } }, "styles": { "type": "array", "items": { "type": "string" } } } }