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>
34 lines
881 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|