{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/k9s-views-yaml/latest.json",
  "title": "K9s views schema",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/derailed/k9s/master/internal/config/json/schemas/views.json",
    "sourceSha256": "3e180a8b29ee7c466d40a66226756c1971c206b6a9bf1ef26927c5e0393aec07",
    "fileMatch": [
      "**/k9s/views.yaml"
    ],
    "parsers": [
      "yaml"
    ]
  },
  "type": "object",
  "properties": {
    "views": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "required": [
          "columns"
        ],
        "properties": {
          "sortColumn": {
            "type": "string"
          },
          "columns": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "additionalProperties": false
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "views"
  ]
}
