{
  "description": "IPAddress is the Schema for the ipaddress API.",
  "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": {
      "description": "spec is the desired state of IPAddress.",
      "properties": {
        "address": {
          "description": "address is the IP address.",
          "maxLength": 39,
          "minLength": 1,
          "type": "string"
        },
        "claimRef": {
          "description": "claimRef is a reference to the claim this IPAddress was created for.",
          "properties": {
            "name": {
              "default": "",
              "description": "Name of the referent.\nThis field is effectively required, but due to backwards compatibility is\nallowed to be empty. Instances of this type with an empty value here are\nalmost certainly wrong.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names",
              "type": "string"
            }
          },
          "type": "object",
          "x-kubernetes-map-type": "atomic",
          "additionalProperties": false
        },
        "gateway": {
          "description": "gateway is the network gateway of the network the address is from.",
          "maxLength": 39,
          "minLength": 1,
          "type": "string"
        },
        "poolRef": {
          "description": "poolRef is a reference to the pool that this IPAddress was created from.",
          "properties": {
            "apiGroup": {
              "description": "APIGroup is the group for the resource being referenced.\nIf APIGroup is not specified, the specified Kind must be in the core API group.\nFor any other third-party types, APIGroup is required.",
              "type": "string"
            },
            "kind": {
              "description": "Kind is the type of resource being referenced",
              "type": "string"
            },
            "name": {
              "description": "Name is the name of resource being referenced",
              "type": "string"
            }
          },
          "required": [
            "kind",
            "name"
          ],
          "type": "object",
          "x-kubernetes-map-type": "atomic",
          "additionalProperties": false
        },
        "prefix": {
          "description": "prefix is the prefix of the address.",
          "type": "integer"
        }
      },
      "required": [
        "address",
        "claimRef",
        "poolRef",
        "prefix"
      ],
      "type": "object",
      "additionalProperties": false
    }
  },
  "type": "object"
}
