{
  "description": "CSINodeSpec holds information about the specification of all CSI drivers installed on a node",
  "properties": {
    "drivers": {
      "description": "drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.",
      "items": {
        "$ref": "_definitions.json#/definitions/io.k8s.api.storage.v1.CSINodeDriver"
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-list-map-keys": [
        "name"
      ],
      "x-kubernetes-list-type": "map",
      "x-kubernetes-patch-merge-key": "name",
      "x-kubernetes-patch-strategy": "merge"
    }
  },
  "required": [
    "drivers"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}