{ "$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" } } }