{ "$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": { "label": { "type": "string", "title": "Badge Label", "description": "Hand-drawn badge text", "default": "Featured pour", "x-editor": "text" }, "origin": { "type": "string", "title": "Origin / Kicker", "description": "Small hand-drawn line above the name (e.g. \"Single origin\")", "x-editor": "text" }, "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" }, "currency": { "type": "string", "title": "Currency Symbol", "default": "$", "x-editor": "text" }, "price": { "type": "string", "title": "Price", "description": "Price displayed in mono type (e.g. \"6.50\")", "x-editor": "text" } } }