themes-corporate-modernist/blocks/testimonial_quote.schema.json
Alex Dunmow 3207394c38 feat: convert to codeless .bnp — templates + manifest, Go/templ deleted (WO-WZ-021)
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 15:26:48 +08:00

42 lines
990 B
JSON

{
"$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"
}
}
}