{
  "description": "VolumeAttachmentSpec is the specification of a VolumeAttachment request.",
  "properties": {
    "attacher": {
      "description": "Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().",
      "type": [
        "string",
        "null"
      ]
    },
    "nodeName": {
      "description": "The node that the volume should be attached to.",
      "type": [
        "string",
        "null"
      ]
    },
    "source": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.2/_definitions.json#/definitions/io.k8s.api.storage.v1.VolumeAttachmentSource",
      "description": "Source represents the volume that should be attached."
    }
  },
  "required": [
    "attacher",
    "source",
    "nodeName"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}