Wine-Searcher · Schema

Wine

A wine with aggregated pricing and data from Wine-Searcher

DataMarketplaceWinePricesMerchantsVintagesCritics

Properties

Name Type Description
name string Full wine name as known by Wine-Searcher
vintage string Vintage year or NV (non-vintage)
producer string Wine producer/winery name
region string Wine production region
country string Production country
grape string Primary grape variety or blend
alcohol_by_volume number Alcohol by volume percentage
score number Wine-Searcher aggregated critic score (0-100)
price_average number Average retail price across all listings
price_min number Minimum retail price across all listings
price_max number Maximum retail price across all listings
currency string Currency code for price values
listing_count integer Total number of merchant listings
View JSON Schema on GitHub

JSON Schema

wine-searcher-wine-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wine-searcher/refs/heads/main/json-schema/wine-searcher-wine-schema.json",
  "title": "Wine",
  "description": "A wine with aggregated pricing and data from Wine-Searcher",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Full wine name as known by Wine-Searcher"
    },
    "vintage": {
      "type": "string",
      "description": "Vintage year or NV (non-vintage)"
    },
    "producer": {
      "type": "string",
      "description": "Wine producer/winery name"
    },
    "region": {
      "type": "string",
      "description": "Wine production region"
    },
    "country": {
      "type": "string",
      "description": "Production country"
    },
    "grape": {
      "type": "string",
      "description": "Primary grape variety or blend"
    },
    "alcohol_by_volume": {
      "type": "number",
      "description": "Alcohol by volume percentage"
    },
    "score": {
      "type": "number",
      "description": "Wine-Searcher aggregated critic score (0-100)"
    },
    "price_average": {
      "type": "number",
      "description": "Average retail price across all listings"
    },
    "price_min": {
      "type": "number",
      "description": "Minimum retail price across all listings"
    },
    "price_max": {
      "type": "number",
      "description": "Maximum retail price across all listings"
    },
    "currency": {
      "type": "string",
      "description": "Currency code for price values"
    },
    "listing_count": {
      "type": "integer",
      "description": "Total number of merchant listings"
    }
  },
  "required": ["name"]
}