themes-brutalist/blocks/caption_image.schema.json
Alex Dunmow 979516b5e9 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:08:06 +08:00

27 lines
630 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Captioned Image",
"description": "Image with 11px mono caption in the left gutter",
"type": "object",
"properties": {
"image": {
"type": "string",
"title": "Image",
"description": "Figure image",
"x-editor": "media"
},
"caption": {
"type": "string",
"title": "Caption",
"description": "Mono uppercase caption text",
"x-editor": "text"
},
"figureNumber": {
"type": "string",
"title": "Figure Number",
"description": "e.g. Fig. 01",
"x-editor": "text"
}
}
}