Infoblox · Schema

FixedAddressCreate

CloudDDIDHCPDNSIPAMNetwork ManagementSecurityThreat Intelligence

Properties

Name Type Description
ipv4addr string The IPv4 address to reserve.
mac string The MAC address of the client.
network_view string The network view.
comment string A descriptive comment.
View JSON Schema on GitHub

JSON Schema

infoblox-fixedaddresscreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FixedAddressCreate",
  "title": "FixedAddressCreate",
  "type": "object",
  "required": [
    "ipv4addr",
    "mac"
  ],
  "properties": {
    "ipv4addr": {
      "type": "string",
      "format": "ipv4",
      "description": "The IPv4 address to reserve."
    },
    "mac": {
      "type": "string",
      "description": "The MAC address of the client."
    },
    "network_view": {
      "type": "string",
      "description": "The network view."
    },
    "comment": {
      "type": "string",
      "description": "A descriptive comment.",
      "maxLength": 256
    }
  }
}