{
  "$schema": "http://json-schema.org/schema#", 
  "required": [
    "volumeID"
  ], 
  "type": "object", 
  "description": "PortworxVolumeSource represents a Portworx volume resource.", 
  "properties": {
    "readOnly": {
      "type": "boolean", 
      "description": "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts."
    }, 
    "volumeID": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "VolumeID uniquely identifies a Portworx volume"
    }, 
    "fsType": {
      "type": [
        "string", 
        "null"
      ], 
      "description": "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified."
    }
  }
}