{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/k9s-hotkeys-yaml/latest.json",
  "title": "K9s hotkeys schema",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/derailed/k9s/master/internal/config/json/schemas/hotkeys.json",
    "sourceSha256": "80a4b77035d3b545abc87d9c6cea3f30a387a1019d906bf6176d0032cc67f8ac",
    "fileMatch": [
      "**/k9s/hotkeys.yaml"
    ],
    "parsers": [
      "yaml"
    ]
  },
  "type": "object",
  "properties": {
    "hotKeys": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "shortCut": {
            "type": "string"
          },
          "override": {
            "type": "boolean"
          },
          "description": {
            "type": "string"
          },
          "command": {
            "type": "string"
          },
          "keepHistory": {
            "type": "boolean"
          }
        }
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "hotKeys"
  ]
}
