Discogs · Schema

ArtistRelease

ArtistRelease schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
id integer
resource_url string
type string
title string
thumb string
artist string
role string
year integer
format string
label string
status string
View JSON Schema on GitHub

JSON Schema

discogs-artist-release-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-artist-release-schema.json",
  "title": "ArtistRelease",
  "description": "ArtistRelease schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "resource_url": {
      "type": "string",
      "format": "uri"
    },
    "type": {
      "type": "string",
      "enum": [
        "release",
        "master"
      ]
    },
    "title": {
      "type": "string"
    },
    "thumb": {
      "type": "string",
      "format": "uri"
    },
    "artist": {
      "type": "string"
    },
    "role": {
      "type": "string"
    },
    "year": {
      "type": "integer",
      "nullable": true
    },
    "format": {
      "type": "string",
      "nullable": true
    },
    "label": {
      "type": "string",
      "nullable": true
    },
    "status": {
      "type": "string",
      "nullable": true
    }
  }
}