themes-pastel-dream/blocks/testimonial-soft.schema.json
Alex Dunmow 5dfc1cd4be 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:27:47 +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"
}
}
}