{
  "description": "PersistentVolumeClaimStatus is the current status of a persistent volume claim.",
  "properties": {
    "accessModes": {
      "description": "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1",
      "items": {
        "type": [
          "string",
          "null"
        ]
      },
      "type": [
        "array",
        "null"
      ]
    },
    "capacity": {
      "additionalProperties": {
        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.2/_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
      },
      "description": "Represents the actual resources of the underlying volume.",
      "type": [
        "object",
        "null"
      ]
    },
    "conditions": {
      "description": "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.2/_definitions.json#/definitions/io.k8s.api.core.v1.PersistentVolumeClaimCondition"
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-patch-merge-key": "type",
      "x-kubernetes-patch-strategy": "merge"
    },
    "phase": {
      "description": "Phase represents the current phase of PersistentVolumeClaim.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}