Discogs · JSON Structure

Discogs Release Stats Structure

Marketplace statistics for a release.

Type: object Properties: 3
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

lowest_price num_for_sale blocked_from_sale

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