{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Soft Testimonial", "description": "Deckle-edge card carrying a quote, attribution, optional avatar, and rating.", "type": "object", "properties": { "quote": { "type": "string", "title": "Quote", "description": "The testimonial body. Rich text.", "x-editor": "richtext" }, "name": { "type": "string", "title": "Name", "description": "Person being quoted.", "x-editor": "text" }, "role": { "type": "string", "title": "Role", "description": "Their title, company, or context.", "x-editor": "text" }, "avatar": { "type": "string", "title": "Avatar", "description": "Optional portrait or illustration.", "x-editor": "media" }, "rating": { "type": "number", "title": "Rating", "description": "Star rating, 0 to 5.", "minimum": 0, "maximum": 5, "x-editor": "number" } } }