themes-scifi-clean/blocks/tech_spec.schema.json
Alex Dunmow dc4cc2d8b3 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:24:40 +08:00

46 lines
1.2 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Tech Spec Table",
"description": "Specification table with right-aligned mono numerals and hairline rows.",
"type": "object",
"properties": {
"caption": {
"type": "string",
"title": "Caption",
"description": "Optional caption rendered above the table.",
"x-editor": "text"
},
"rows": {
"type": "array",
"title": "Rows",
"description": "Each row is a label / value / unit triple.",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"title": "Label",
"description": "Left column descriptor (e.g. Thrust).",
"x-editor": "text"
},
"value": {
"type": "string",
"title": "Value",
"description": "Right-aligned mono numeral or short string.",
"x-editor": "text"
},
"unit": {
"type": "string",
"title": "Unit",
"description": "Trailing unit (e.g. kN, kg, ms).",
"x-editor": "text"
}
},
"required": ["label", "value"]
}
}
}
}