{
  "description": "PodCondition contains details for the current condition of this pod.",
  "properties": {
    "lastProbeTime": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.5/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "Last time we probed the condition."
    },
    "lastTransitionTime": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.5/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "Last time the condition transitioned from one status to another."
    },
    "message": {
      "description": "Human-readable message indicating details about last transition.",
      "type": [
        "string",
        "null"
      ]
    },
    "reason": {
      "description": "Unique, one-word, CamelCase reason for the condition's last transition.",
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "description": "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions",
      "type": [
        "string",
        "null"
      ]
    },
    "type": {
      "description": "Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions\n\nPossible enum values:\n - `\"ContainersReady\"` indicates whether all containers in the pod are ready.\n - `\"Initialized\"` means that all init containers in the pod have started successfully.\n - `\"PodScheduled\"` represents status of the scheduling process for this pod.\n - `\"Ready\"` means the pod is able to service requests and should be added to the load balancing pools of all matching services.",
      "enum": [
        "ContainersReady",
        "Initialized",
        "PodScheduled",
        "Ready"
      ],
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "type",
    "status"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}