{
  "description": "ReplicaSetCondition describes the state of a replica set at a certain point.",
  "properties": {
    "lastTransitionTime": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.25.12/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "The last time the condition transitioned from one status to another."
    },
    "message": {
      "description": "A human readable message indicating details about the transition.",
      "type": [
        "string",
        "null"
      ]
    },
    "reason": {
      "description": "The reason for the condition's last transition.",
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "description": "Status of the condition, one of True, False, Unknown.",
      "type": [
        "string",
        "null"
      ]
    },
    "type": {
      "description": "Type of replica set condition.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "type",
    "status"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}