{
  "description": "IP is the Schema for the ips API",
  "properties": {
    "apiVersion": {
      "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",
      "type": "string"
    },
    "kind": {
      "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",
      "type": "string"
    },
    "metadata": {
      "type": "object"
    },
    "spec": {
      "description": "IPSpec defines the desired state of IP",
      "properties": {
        "address": {
          "type": "string"
        },
        "dynamicIpSources": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "interval": {
          "type": "string"
        },
        "type": {
          "default": "static",
          "enum": [
            "static",
            "dynamic"
          ],
          "type": "string"
        }
      },
      "type": "object",
      "additionalProperties": false
    },
    "status": {
      "description": "IPStatus defines the observed state of IP",
      "properties": {
        "lastObservedIP": {
          "type": "string"
        },
        "message": {
          "description": "Message if the IP failed to update",
          "type": "string"
        },
        "phase": {
          "description": "Phase of the IP",
          "enum": [
            "Ready",
            "Failed"
          ],
          "type": "string"
        }
      },
      "required": [
        "lastObservedIP"
      ],
      "type": "object",
      "additionalProperties": false
    }
  },
  "type": "object"
}
