Discogs · Schema

PriceSuggestion

Suggested marketplace price for a release at a given media condition.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
currency object
value number
View JSON Schema on GitHub

JSON Schema

discogs-price-suggestion-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-price-suggestion-schema.json",
  "title": "PriceSuggestion",
  "description": "Suggested marketplace price for a release at a given media condition.",
  "type": "object",
  "properties": {
    "currency": {
      "$ref": "#/components/schemas/Currency"
    },
    "value": {
      "type": "number",
      "example": 19.99
    }
  }
}