themes-pastel-dream/schemas/testimonial-soft.schema.json
Alex Dunmow de55bbebd6 initial: theme plugin pastel-dream
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/pastel-dream.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:41 +08:00

41 lines
1015 B
JSON

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