Discogs · JSON Structure

Discogs Artist Structure

Represents a person or group in the Discogs database.

Type: object Properties: 12
MusicMarketplaceCatalogCommunityVinylPublic APIs

Artist is a JSON Structure definition published by Discogs, describing 12 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name realname resource_url uri releases_url profile urls namevariations members images data_quality

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-structure/discogs-artist-structure.json",
  "name": "Artist",
  "description": "Represents a person or group in the Discogs database.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "realname": {
      "type": "string",
      "nullable": true
    },
    "resource_url": {
      "type": "uri",
      "readOnly": true
    },
    "uri": {
      "type": "uri",
      "readOnly": true
    },
    "releases_url": {
      "type": "uri"
    },
    "profile": {
      "type": "string",
      "nullable": true
    },
    "urls": {
      "type": "array",
      "items": {
        "type": "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"
    }
  }
}