Discogs · Schema

ReleaseStats

Marketplace statistics for a release.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
lowest_price object
num_for_sale integer
blocked_from_sale boolean
View JSON Schema on GitHub

JSON Schema

discogs-release-stats-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-release-stats-schema.json",
  "title": "ReleaseStats",
  "description": "Marketplace statistics for a release.",
  "type": "object",
  "properties": {
    "lowest_price": {
      "$ref": "#/components/schemas/Price"
    },
    "num_for_sale": {
      "type": "integer",
      "example": 47
    },
    "blocked_from_sale": {
      "type": "boolean",
      "example": false
    }
  }
}