{
  "description": "A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.",
  "properties": {
    "matchLabelExpressions": {
      "description": "A list of topology selector requirements by labels.",
      "items": {
        "description": "A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.",
        "properties": {
          "key": {
            "description": "The label key that the selector applies to.",
            "type": "string"
          },
          "values": {
            "description": "An array of string values. One value must match the label to be selected. Each entry in Values is ORed.",
            "items": {
              "type": [
                "string",
                "null"
              ]
            },
            "type": "array",
            "x-kubernetes-list-type": "atomic"
          }
        },
        "required": [
          "key",
          "values"
        ],
        "type": [
          "object",
          "null"
        ],
        "additionalProperties": false
      },
      "type": [
        "array",
        "null"
      ],
      "x-kubernetes-list-type": "atomic"
    }
  },
  "type": "object",
  "x-kubernetes-map-type": "atomic",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}