{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Storybook Quote", "description": "Picture-book page treatment for a quote with optional illustration.", "type": "object", "properties": { "quote": { "type": "string", "title": "Quote", "description": "The quoted text.", "x-editor": "textarea" }, "author": { "type": "string", "title": "Author", "description": "Who said it.", "x-editor": "text" }, "illustration": { "type": "string", "title": "Illustration", "description": "Optional picture-book illustration.", "x-editor": "media" } } }