{
  "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": "nodeName represents the node that the volume should be attached to.",
      "type": [
        "string",
        "null"
      ]
    },
    "source": {
      "$ref": "_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#"
}