{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Order Ribbon", "description": "A rounded call-to-order ribbon with a pickup note and a soft pill button", "type": "object", "properties": { "heading": { "type": "string", "title": "Heading", "default": "Order for the weekend", "x-editor": "text" }, "message": { "type": "string", "title": "Message", "x-editor": "textarea" }, "pickupNote": { "type": "string", "title": "Pickup Note", "description": "Small line about lead time or pickup", "x-editor": "text" }, "ctaLabel": { "type": "string", "title": "Button Label", "default": "Place an order", "x-editor": "text" }, "ctaUrl": { "type": "string", "title": "Button Link", "default": "/contact", "x-editor": "text" } } }