Discogs · Schema
Artist
Represents a person or group in the Discogs database.
MusicMarketplaceCatalogCommunityVinylPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| realname | string | |
| resource_url | string | |
| uri | string | |
| releases_url | string | |
| profile | string | |
| urls | array | |
| namevariations | array | |
| members | array | |
| images | array | |
| data_quality | string |
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-artist-schema.json",
"title": "Artist",
"description": "Represents a person or group in the Discogs database.",
"type": "object",
"properties": {
"id": {
"type": "integer",
"readOnly": true
},
"name": {
"type": "string"
},
"realname": {
"type": "string",
"nullable": true
},
"resource_url": {
"type": "string",
"format": "uri",
"readOnly": true
},
"uri": {
"type": "string",
"format": "uri",
"readOnly": true
},
"releases_url": {
"type": "string",
"format": "uri"
},
"profile": {
"type": "string",
"nullable": true
},
"urls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"namevariations": {
"type": "array",
"items": {
"type": "string"
}
},
"members": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ArtistSummary"
}
},
"images": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Image"
}
},
"data_quality": {
"type": "string"
}
}
}