Discogs · JSON Structure

Discogs Release Version Structure

ReleaseVersion schema from Discogs API

Type: object Properties: 12
MusicMarketplaceCatalogCommunityVinylPublic APIs

ReleaseVersion 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 resource_url status thumb format country title label released major_formats catno stats

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-release-version-structure.json",
  "name": "ReleaseVersion",
  "description": "ReleaseVersion schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "resource_url": {
      "type": "uri"
    },
    "status": {
      "type": "string"
    },
    "thumb": {
      "type": "uri"
    },
    "format": {
      "type": "string"
    },
    "country": {
      "type": "string",
      "nullable": true
    },
    "title": {
      "type": "string"
    },
    "label": {
      "type": "string"
    },
    "released": {
      "type": "string"
    },
    "major_formats": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "catno": {
      "type": "string",
      "nullable": true
    },
    "stats": {
      "type": "object",
      "properties": {
        "community": {
          "type": "object",
          "properties": {
            "in_collection": {
              "type": "int32"
            },
            "in_wantlist": {
              "type": "int32"
            }
          }
        }
      }
    }
  }
}