themes-brutalist/schemas/caption_image.schema.json
Alex Dunmow 771a286fa9 initial: theme plugin brutalist
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/brutalist.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:21 +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"
}
}
}