themes-scifi-clean/schemas/tech_spec.schema.json
Alex Dunmow 96b87b3e81 initial: theme plugin scifi-clean
Bootstrapped during the 2026-06-06 BlockNinja consolidation. Was previously
an unversioned directory inside ~/src/blockninja-themes/scifi-clean.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-06 14:11:43 +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"]
}
}
}
}