themes-corporate-modernist/schemas/testimonial_quote.schema.json
Alex Dunmow 4713787bbd initial: theme plugin corporate-modernist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/corporate-modernist.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:24 +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"
}
}
}