themes-brutalist/schemas/meta_strip.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

34 lines
881 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Metadata Strip",
"description": "Mono uppercase strip: CLIENT / YEAR / DISCIPLINE / LOCATION",
"type": "object",
"properties": {
"items": {
"type": "array",
"title": "Items",
"description": "Label/value pairs displayed inline",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label",
"description": "Short uppercase label",
"x-editor": "text"
},
"value": {
"type": "string",
"title": "Value",
"description": "Value text shown beside the label",
"x-editor": "text"
}
},
"required": ["label", "value"]
}
}
}
}