{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Testimonial", "description": "Pull-quote testimonial with attribution and optional headshot and company logo.", "type": "object", "properties": { "quote": { "type": "string", "title": "Quote", "description": "Testimonial body text", "x-editor": "textarea" }, "name": { "type": "string", "title": "Name", "x-editor": "text" }, "role": { "type": "string", "title": "Role", "x-editor": "text" }, "company": { "type": "string", "title": "Company", "x-editor": "text" }, "headshot": { "type": "string", "title": "Headshot", "description": "Portrait image of the quoted person", "x-editor": "media" }, "logo": { "type": "string", "title": "Company logo", "description": "Optional company mark beside the attribution", "x-editor": "media" } } }