k9s/internal/config/json/schemas/hotkeys.json

23 lines
560 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "K9s hotkeys schema",
"type": "object",
"additionalProperties": false,
"properties": {
"hotKeys": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"shortCut": {"type": "string"},
"override": { "type": "boolean" },
"description": {"type": "string"},
"command": {"type": "string"},
"keepHistory": {"type": "boolean"}
}
}
}
},
"required": ["hotKeys"]
}