{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Press Quote", "description": "Italic Cormorant pull-quote between fan dividers.", "type": "object", "properties": { "quote": { "type": "string", "title": "Quote", "description": "The press quotation (rich text).", "x-editor": "richtext", "default": "" }, "source": { "type": "string", "title": "Source", "description": "Attribution line — e.g. 'The Daily, March 2024'.", "x-editor": "text", "default": "" }, "stars": { "type": "integer", "title": "Stars", "description": "Filled-star count, clamped to 0–5.", "x-editor": "number", "default": 0, "minimum": 0, "maximum": 5 } } }