themes-terminal/blocks/keybind_table.schema.json
Alex Dunmow f6e2c1dccc 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:31:20 +08:00

34 lines
833 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Keybinding Table",
"description": "Two-column key + action reference table",
"type": "object",
"properties": {
"rows": {
"type": "array",
"title": "Rows",
"description": "List of keybinding rows",
"default": [],
"x-editor": "collection",
"items": {
"type": "object",
"properties": {
"keys": {
"type": "string",
"title": "Keys",
"description": "Keybinding (e.g. Ctrl+B d)",
"x-editor": "text"
},
"action": {
"type": "string",
"title": "Action",
"description": "What the binding does",
"x-editor": "text"
}
},
"required": ["keys"]
}
}
}
}