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>
42 lines
990 B
JSON
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"
|
|
}
|
|
}
|
|
}
|