Discogs · JSON Structure

Discogs Search Result Release Structure

SearchResultRelease schema from Discogs API

Type: object Properties: 15
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

id type title thumb cover_image resource_url uri country year format label catno genre style barcode

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-search-result-release-structure.json",
  "name": "SearchResultRelease",
  "description": "SearchResultRelease schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "type": {
      "type": "string",
      "enum": [
        "release"
      ]
    },
    "title": {
      "type": "string"
    },
    "thumb": {
      "type": "uri"
    },
    "cover_image": {
      "type": "uri"
    },
    "resource_url": {
      "type": "uri"
    },
    "uri": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "year": {
      "type": "string"
    },
    "format": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "label": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "catno": {
      "type": "string"
    },
    "genre": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "style": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "barcode": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}