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

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"]
}
}
}
}