Discogs · Schema
ReleaseSummary
ReleaseSummary schema from Discogs API
MusicMarketplaceCatalogCommunityVinylPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| title | string | |
| year | integer | |
| resource_url | string | |
| thumb | string | |
| cover_image | string | |
| formats | array | |
| labels | array | |
| artists | array | |
| genres | array | |
| styles | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-release-summary-schema.json",
"title": "ReleaseSummary",
"description": "ReleaseSummary schema from Discogs API",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"title": {
"type": "string"
},
"year": {
"type": "integer"
},
"resource_url": {
"type": "string",
"format": "uri"
},
"thumb": {
"type": "string",
"format": "uri"
},
"cover_image": {
"type": "string",
"format": "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"
}
}
}
}