Discogs · Schema

ListsResponse

Paginated response of a user's lists.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
pagination object
lists array
View JSON Schema on GitHub

JSON Schema

discogs-lists-response-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-lists-response-schema.json",
  "title": "ListsResponse",
  "description": "Paginated response of a user's lists.",
  "type": "object",
  "properties": {
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    },
    "lists": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/List"
      }
    }
  }
}