{
  "description": "CiliumPodIPPool defines an IP pool that can be used for pooled IPAM (i.e. the multi-pool IPAM\nmode).",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": "string"
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": "string"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "properties": {
        "ipv4": {
          "description": "IPv4 specifies the IPv4 CIDRs and mask sizes of the pool",
          "properties": {
            "cidrs": {
              "description": "CIDRs is a list of IPv4 CIDRs that are part of the pool.",
              "items": {
                "description": "PoolCIDR is an IP pool CIDR.",
                "format": "cidr",
                "type": "string"
              },
              "minItems": 1,
              "type": "array"
            },
            "maskSize": {
              "description": "MaskSize is the mask size of the pool.",
              "maximum": 32,
              "minimum": 1,
              "type": "integer"
            }
          },
          "required": [
            "cidrs",
            "maskSize"
          ],
          "type": "object",
          "additionalProperties": false
        },
        "ipv6": {
          "description": "IPv6 specifies the IPv6 CIDRs and mask sizes of the pool",
          "properties": {
            "cidrs": {
              "description": "CIDRs is a list of IPv6 CIDRs that are part of the pool.",
              "items": {
                "description": "PoolCIDR is an IP pool CIDR.",
                "format": "cidr",
                "type": "string"
              },
              "minItems": 1,
              "type": "array"
            },
            "maskSize": {
              "description": "MaskSize is the mask size of the pool.",
              "maximum": 128,
              "minimum": 1,
              "type": "integer"
            }
          },
          "required": [
            "cidrs",
            "maskSize"
          ],
          "type": "object",
          "additionalProperties": false
        }
      },
      "type": "object",
      "additionalProperties": false
    }
  },
  "required": [
    "spec"
  ],
  "type": "object"
}
