Discogs · JSON Structure

Discogs Master Structure

Represents a set of similar Releases.

Type: object Properties: 0
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

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-master-structure.json",
  "name": "Master",
  "description": "Represents a set of similar Releases.",
  "type": "object",
  "allOf": [
    {
      "$ref": "#/components/schemas/Release"
    },
    {
      "type": "object",
      "properties": {
        "main_release": {
          "type": "int32",
          "description": "The ID of the main release for this master."
        },
        "main_release_url": {
          "type": "uri"
        },
        "versions_url": {
          "type": "uri"
        }
      }
    }
  ]
}