Discogs · JSON Structure

Discogs List Item Structure

A single item inside a user list.

Type: object Properties: 7
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

id type display_title uri comment image_url resource_url

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-list-item-structure.json",
  "name": "ListItem",
  "description": "A single item inside a user list.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "example": 4567
    },
    "type": {
      "type": "string",
      "enum": [
        "release",
        "master",
        "artist",
        "label"
      ],
      "example": "release"
    },
    "display_title": {
      "type": "string",
      "example": "Miles Davis \u2014 Kind Of Blue"
    },
    "uri": {
      "type": "uri"
    },
    "comment": {
      "type": "string"
    },
    "image_url": {
      "type": "uri"
    },
    "resource_url": {
      "type": "uri"
    }
  }
}