{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Seasonal Specials", "description": "This season's featured bakes in a soft card grid", "type": "object", "properties": { "kicker": { "type": "string", "title": "Kicker", "description": "Small sweet line above the heading", "default": "This season", "x-editor": "text" }, "heading": { "type": "string", "title": "Heading", "x-editor": "text" }, "intro": { "type": "string", "title": "Intro", "x-editor": "textarea" }, "currency": { "type": "string", "title": "Currency Symbol", "default": "$", "x-editor": "text" }, "items": { "type": "array", "title": "Specials", "x-editor": "collection", "items": { "type": "object", "properties": { "image": { "type": "string", "title": "Image", "x-editor": "media" }, "name": { "type": "string", "title": "Name", "x-editor": "text" }, "note": { "type": "string", "title": "Note", "x-editor": "textarea" }, "price": { "type": "string", "title": "Price", "x-editor": "text" }, "badge": { "type": "string", "title": "Badge", "x-editor": "text" } } } } } }