Infoblox · Schema

ZoneAuthCreate

CloudDDIDHCPDNSIPAMNetwork ManagementSecurityThreat Intelligence

Properties

Name Type Description
fqdn string The fully qualified domain name of the zone.
view string The DNS view in which to create the zone.
zone_format string The format of the zone.
comment string A descriptive comment.
View JSON Schema on GitHub

JSON Schema

infoblox-zoneauthcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ZoneAuthCreate",
  "title": "ZoneAuthCreate",
  "type": "object",
  "required": [
    "fqdn",
    "zone_format"
  ],
  "properties": {
    "fqdn": {
      "type": "string",
      "description": "The fully qualified domain name of the zone."
    },
    "view": {
      "type": "string",
      "description": "The DNS view in which to create the zone."
    },
    "zone_format": {
      "type": "string",
      "enum": [
        "FORWARD",
        "IPV4",
        "IPV6"
      ],
      "description": "The format of the zone."
    },
    "comment": {
      "type": "string",
      "description": "A descriptive comment.",
      "maxLength": 256
    }
  }
}