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