themes-coffee/blocks/featured_pour.schema.json
Alex Dunmow 1a6cc30202 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:30:42 +08:00

33 lines
850 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Featured Pour",
"description": "Hero card for a featured coffee, tea, or pastry with image, tasting notes and price",
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"description": "Item name (e.g. \"Ethiopia Yirgacheffe\")",
"x-editor": "text"
},
"tasting": {
"type": "string",
"title": "Tasting Notes",
"description": "Rich text tasting description",
"x-editor": "richtext"
},
"image": {
"type": "string",
"title": "Image",
"description": "Hero image",
"x-editor": "media"
},
"price": {
"type": "string",
"title": "Price",
"description": "Price displayed in mono type (e.g. \"6.50\")",
"x-editor": "text"
}
}
}