{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Pull Quote", "description": "Color-block pull quote that sits in the gutter or main column.", "type": "object", "properties": { "quote": { "type": "string", "title": "Quote", "description": "The quote body (rich text).", "x-editor": "richtext" }, "attribution": { "type": "string", "title": "Attribution", "description": "Who said it.", "x-editor": "text" }, "accent": { "type": "string", "title": "Accent", "description": "Which rotating accent to apply.", "enum": ["pink", "blue", "lime"], "default": "pink", "x-editor": "select" } } }