Discogs · Schema

Want

Want schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
id integer
resource_url string
rating integer
notes string
basic_information object
View JSON Schema on GitHub

JSON Schema

discogs-want-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-want-schema.json",
  "title": "Want",
  "description": "Want schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "resource_url": {
      "type": "string",
      "format": "uri"
    },
    "rating": {
      "type": "integer"
    },
    "notes": {
      "type": "string",
      "nullable": true
    },
    "basic_information": {
      "$ref": "#/components/schemas/ReleaseSummary"
    }
  }
}