{
  "description": "Represents a source location of a volume to mount, managed by an external CSI driver",
  "properties": {
    "driver": {
      "description": "driver is the name of the CSI driver that handles this volume. Consult with your admin for the correct name as registered in the cluster.",
      "type": [
        "string",
        "null"
      ]
    },
    "fsType": {
      "description": "fsType to mount. Ex. \"ext4\", \"xfs\", \"ntfs\". If not provided, the empty value is passed to the associated CSI driver which will determine the default filesystem to apply.",
      "type": [
        "string",
        "null"
      ]
    },
    "nodePublishSecretRef": {
      "description": "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.",
      "properties": {
        "name": {
          "description": "Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "type": [
        "object",
        "null"
      ],
      "x-kubernetes-map-type": "atomic",
      "additionalProperties": false
    },
    "readOnly": {
      "description": "readOnly specifies a read-only configuration for the volume. Defaults to false (read/write).",
      "type": [
        "boolean",
        "null"
      ]
    },
    "volumeAttributes": {
      "additionalProperties": {
        "type": [
          "string",
          "null"
        ]
      },
      "description": "volumeAttributes stores driver-specific properties that are passed to the CSI driver. Consult your driver's documentation for supported values.",
      "type": [
        "object",
        "null"
      ]
    }
  },
  "required": [
    "driver"
  ],
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}