Discogs · Schema
LabelRelease
LabelRelease schema from Discogs API
MusicMarketplaceCatalogCommunityVinylPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| resource_url | string | |
| thumb | string | |
| artist | string | |
| title | string | |
| format | string | |
| catno | string | |
| status | string | |
| year | integer |
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-label-release-schema.json",
"title": "LabelRelease",
"description": "LabelRelease schema from Discogs API",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"resource_url": {
"type": "string",
"format": "uri"
},
"thumb": {
"type": "string",
"format": "uri"
},
"artist": {
"type": "string"
},
"title": {
"type": "string"
},
"format": {
"type": "string"
},
"catno": {
"type": "string"
},
"status": {
"type": "string"
},
"year": {
"type": "integer"
}
}
}