{
  "description": "PodCondition contains details for the current condition of this pod.",
  "properties": {
    "lastProbeTime": {
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "Last time we probed the condition."
    },
    "lastTransitionTime": {
      "$ref": "_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"
      ]
    },
    "observedGeneration": {
      "description": "If set, this represents the .metadata.generation that the pod condition was set based upon. The PodObservedGenerationTracking feature gate must be enabled to use this field.",
      "format": "int64",
      "type": [
        "integer",
        "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",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "type",
    "status"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}