{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Tour Dates", "description": "A list of live dates with venue, city, and a ticket link.", "type": "object", "properties": { "heading": { "type": "string", "title": "Heading", "x-editor": "text", "default": "Tour dates" }, "intro": { "type": "string", "title": "Intro", "x-editor": "text", "default": "" }, "dates": { "type": "array", "title": "Dates", "x-editor": "array", "items": { "type": "object", "properties": { "date": { "type": "string", "title": "Date", "x-editor": "text" }, "venue": { "type": "string", "title": "Venue", "x-editor": "text" }, "city": { "type": "string", "title": "City", "x-editor": "text" }, "ticketUrl": { "type": "string", "title": "Ticket URL", "x-editor": "text" }, "soldOut": { "type": "boolean", "title": "Sold out", "x-editor": "boolean", "default": false } } }, "default": [] } } }