Discogs · Schema

Price

Price schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

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

JSON Schema

discogs-price-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-schema.json",
  "title": "Price",
  "description": "Price schema from Discogs API",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string"
    },
    "value": {
      "type": "number",
      "format": "float"
    }
  }
}