Wine Vybe · Schema
Beer
A beer product in the Wine Vybe database including brewery, style, and sensory attributes.
BeveragesBeerDatabaseFood PairingLiquorRecommendationsWine
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the beer. |
| name | string | The name of the beer. |
| brewery | string | The brewery that produces the beer. |
| style | string | The beer style category (e.g., IPA, Stout, Pilsner, Abbey Ale, Dark Lager, Cider, Pale Ale, Trappist). |
| abv | number | Alcohol by volume percentage. |
| ibu | integer | International Bitterness Units — a measure of hop bitterness. |
| description | string | A description of the beer's flavor, ingredients, and characteristics. |
| tastingNotes | string | Sensory notes describing aroma, flavor, and finish. |
| foodPairing | array | List of recommended food pairings for this beer. |
| awards | array | Awards and competition results for this beer. |
| country | string | Country of origin. |
| imageUrl | string | URL to an image of the beer bottle or can. |
| shipping | object | Shipping specifications for the beer product. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/wine-vybe/blob/main/json-schema/wine-vybe-beer-schema.json",
"title": "Beer",
"description": "A beer product in the Wine Vybe database including brewery, style, and sensory attributes.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the beer."
},
"name": {
"type": "string",
"description": "The name of the beer."
},
"brewery": {
"type": "string",
"description": "The brewery that produces the beer."
},
"style": {
"type": "string",
"description": "The beer style category (e.g., IPA, Stout, Pilsner, Abbey Ale, Dark Lager, Cider, Pale Ale, Trappist)."
},
"abv": {
"type": "number",
"description": "Alcohol by volume percentage.",
"minimum": 0,
"maximum": 100
},
"ibu": {
"type": "integer",
"description": "International Bitterness Units — a measure of hop bitterness.",
"minimum": 0
},
"description": {
"type": "string",
"description": "A description of the beer's flavor, ingredients, and characteristics."
},
"tastingNotes": {
"type": "string",
"description": "Sensory notes describing aroma, flavor, and finish."
},
"foodPairing": {
"type": "array",
"items": { "type": "string" },
"description": "List of recommended food pairings for this beer."
},
"awards": {
"type": "array",
"items": {
"type": "object",
"properties": {
"competition": { "type": "string" },
"medal": { "type": "string" },
"year": { "type": "integer" }
}
},
"description": "Awards and competition results for this beer."
},
"country": {
"type": "string",
"description": "Country of origin."
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "URL to an image of the beer bottle or can."
},
"shipping": {
"type": "object",
"properties": {
"weightLbs": { "type": "number" },
"weightKg": { "type": "number" }
},
"description": "Shipping specifications for the beer product."
}
},
"required": ["id", "name", "brewery", "style"]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/wine-vybe-beer"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.