Discogs · JSON Structure

Discogs List Structure

A user-created list of releases, masters, artists, or labels.

Type: object Properties: 11
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

id name description public date_added date_changed uri resource_url image_url user items

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-structure.json",
  "name": "List",
  "description": "A user-created list of releases, masters, artists, or labels.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "example": 12345
    },
    "name": {
      "type": "string",
      "example": "Best Jazz Albums of 1960s"
    },
    "description": {
      "type": "string",
      "example": "My personal favorites."
    },
    "public": {
      "type": "boolean",
      "example": true
    },
    "date_added": {
      "type": "datetime",
      "example": "2026-05-29T12:00:00Z"
    },
    "date_changed": {
      "type": "datetime",
      "example": "2026-05-29T12:00:00Z"
    },
    "uri": {
      "type": "uri",
      "example": "https://www.discogs.com/lists/12345"
    },
    "resource_url": {
      "type": "uri"
    },
    "image_url": {
      "type": "uri"
    },
    "user": {
      "$ref": "#/components/schemas/UserSummary"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ListItem"
      }
    }
  }
}