themes-coffee/schemas/location_card.schema.json
Alex Dunmow 11c6c8c63e initial: theme plugin coffee
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/coffee.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:22 +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"
}
}
}