{
  "description": "ReplicaSetStatus represents the current status of a ReplicaSet.",
  "properties": {
    "availableReplicas": {
      "description": "The number of available replicas (ready for at least minReadySeconds) for this replica set.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "conditions": {
      "description": "Represents the latest available observations of a replica set's current state.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.24.13/_definitions.json#/definitions/io.k8s.api.apps.v1.ReplicaSetCondition"
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-patch-merge-key": "type",
      "x-kubernetes-patch-strategy": "merge"
    },
    "fullyLabeledReplicas": {
      "description": "The number of pods that have labels matching the labels of the pod template of the replicaset.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "observedGeneration": {
      "description": "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.",
      "format": "int64",
      "type": [
        "integer",
        "null"
      ]
    },
    "readyReplicas": {
      "description": "readyReplicas is the number of pods targeted by this ReplicaSet with a Ready Condition.",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    },
    "replicas": {
      "description": "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller",
      "format": "int32",
      "type": [
        "integer",
        "null"
      ]
    }
  },
  "required": [
    "replicas"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}