themes-pastel-dream/blocks/feature-grid-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

43 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Feature Trio",
"description": "Three-up card grid for services, offerings, or values.",
"type": "object",
"properties": {
"intro": {
"type": "string",
"title": "Intro",
"description": "Optional introduction above the cards.",
"x-editor": "richtext"
},
"items": {
"type": "array",
"title": "Cards",
"description": "List of feature cards. Three is the recommended count.",
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"icon": {
"type": "string",
"title": "Icon",
"description": "Decorative icon or small illustration.",
"x-editor": "media"
},
"title": {
"type": "string",
"title": "Title",
"x-editor": "text"
},
"body": {
"type": "string",
"title": "Body",
"x-editor": "textarea"
}
},
"required": ["title"]
}
}
}
}