{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "name"
  ], 
  "type": "object", 
  "description": "Volume represents a named volume in a pod that may be accessed by any container in the pod.", 
  "properties": {
    "name": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: http://kubernetes.io/docs/user-guide/identifiers#names"
    }
  }
}