21 lines
469 B
JSON
21 lines
469 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"},
|
|
"description": {"type": "string"},
|
|
"command": {"type": "string"}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": ["hotKeys"]
|
|
}
|