Discogs · Schema

ListingRelease

Summary of a release within a listing.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
id integer
resource_url string
description string
thumbnail string
artist string
title string
year integer
format string
catalog_number string
View JSON Schema on GitHub

JSON Schema

discogs-listing-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-listing-release-schema.json",
  "title": "ListingRelease",
  "description": "Summary of a release within a listing.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "resource_url": {
      "type": "string",
      "format": "uri"
    },
    "description": {
      "type": "string"
    },
    "thumbnail": {
      "type": "string",
      "format": "uri"
    },
    "artist": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "year": {
      "type": "integer"
    },
    "format": {
      "type": "string"
    },
    "catalog_number": {
      "type": "string"
    }
  }
}