themes-noir/schemas/caption_strip.schema.json
Alex Dunmow 1bebbea5ad initial: theme plugin noir
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/noir.

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

21 lines
587 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Caption Strip",
"description": "Full-width 10px mono caption strip with a label on the left and supporting text on the right.",
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label",
"description": "Left-aligned label (e.g. 'INDEX', 'PLATE 01').",
"x-editor": "text"
},
"right": {
"type": "string",
"title": "Right Text",
"description": "Right-aligned supporting text (e.g. copyright, date).",
"x-editor": "text"
}
}
}