themes-coffee/blocks/location_card.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

27 lines
710 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Location Card",
"description": "Address card with optional map image and directions link, doodle-pin overlay",
"type": "object",
"properties": {
"address": {
"type": "string",
"title": "Address",
"description": "Street address as a multi-line block",
"x-editor": "textarea"
},
"mapImage": {
"type": "string",
"title": "Map Image",
"description": "Optional static map image",
"x-editor": "media"
},
"directionsUrl": {
"type": "string",
"title": "Directions URL",
"description": "Link to Google Maps or similar",
"x-editor": "link"
}
}
}