Discogs · JSON Structure

Discogs Collection Release Structure

CollectionRelease schema from Discogs API

Type: object Properties: 6
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

id instance_id folder_id rating date_added basic_information

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-collection-release-structure.json",
  "name": "CollectionRelease",
  "description": "CollectionRelease schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32"
    },
    "instance_id": {
      "type": "int32"
    },
    "folder_id": {
      "type": "int32"
    },
    "rating": {
      "type": "int32"
    },
    "date_added": {
      "type": "datetime"
    },
    "basic_information": {
      "$ref": "#/components/schemas/ReleaseSummary"
    }
  }
}