{
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string",
      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources"
    },
    "kind": {
      "type": "string",
      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "type": "object",
      "properties": {
        "selector": {
          "type": "object",
          "properties": {
            "matchExpressions": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "key": {
                    "type": "string"
                  },
                  "operator": {
                    "type": "string"
                  },
                  "values": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  }
                },
                "additionalProperties": false
              }
            },
            "matchLabels": {
              "additionalProperties": {
                "type": "string"
              },
              "type": "object"
            }
          },
          "description": "Selector is a label query which matches all the pods managed by this `StrimziPodSet`. Only `matchLabels` is supported. If `matchExpressions` is set, it will be ignored.",
          "additionalProperties": false
        },
        "pods": {
          "type": "array",
          "items": {
            "x-kubernetes-preserve-unknown-fields": true,
            "type": "object"
          },
          "description": "The Pods managed by this StrimziPodSet."
        }
      },
      "required": [
        "selector",
        "pods"
      ],
      "description": "The specification of the StrimziPodSet.",
      "additionalProperties": false
    },
    "status": {
      "type": "object",
      "properties": {
        "conditions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "type": {
                "type": "string",
                "description": "The unique identifier of a condition, used to distinguish between other conditions in the resource."
              },
              "status": {
                "type": "string",
                "description": "The status of the condition, either True, False or Unknown."
              },
              "lastTransitionTime": {
                "type": "string",
                "description": "Last time the condition of a type changed from one status to another. The required format is 'yyyy-MM-ddTHH:mm:ssZ', in the UTC time zone."
              },
              "reason": {
                "type": "string",
                "description": "The reason for the condition's last transition (a single word in CamelCase)."
              },
              "message": {
                "type": "string",
                "description": "Human-readable message indicating details about the condition's last transition."
              }
            },
            "additionalProperties": false
          },
          "description": "List of status conditions."
        },
        "observedGeneration": {
          "type": "integer",
          "description": "The generation of the CRD that was last reconciled by the operator."
        },
        "pods": {
          "type": "integer",
          "description": "Number of pods managed by this `StrimziPodSet` resource."
        },
        "readyPods": {
          "type": "integer",
          "description": "Number of pods managed by this `StrimziPodSet` resource that are ready."
        },
        "currentPods": {
          "type": "integer",
          "description": "Number of pods managed by this `StrimziPodSet` resource that have the current revision."
        }
      },
      "description": "The status of the StrimziPodSet.",
      "additionalProperties": false
    }
  }
}
