{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Site Footer", "description": "Cream-on-moss footer with optional newsletter and botanical rule", "type": "object", "properties": { "showNewsletter": { "type": "boolean", "title": "Show Newsletter", "description": "Show the newsletter signup form", "x-editor": "select", "default": true }, "tagline": { "type": "string", "title": "Tagline", "description": "Tagline above the columns", "x-editor": "text" }, "columns": { "type": "array", "title": "Columns", "description": "Footer link columns", "x-editor": "collection", "items": { "type": "object", "properties": { "title": { "type": "string", "title": "Column Title", "x-editor": "text" }, "links": { "type": "array", "title": "Links", "x-editor": "collection", "items": { "type": "object", "properties": { "text": { "type": "string", "title": "Text", "x-editor": "text" }, "url": { "type": "string", "title": "URL", "x-editor": "link" } } } } } } } } }