Infoblox · Schema

RecordPTRCreate

CloudDDIDHCPDNSIPAMNetwork ManagementSecurityThreat Intelligence

Properties

Name Type Description
ptrdname string The domain name the PTR record points to.
ipv4addr string The IPv4 address.
view string The DNS view.
comment string A descriptive comment.
View JSON Schema on GitHub

JSON Schema

infoblox-recordptrcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordPTRCreate",
  "title": "RecordPTRCreate",
  "type": "object",
  "required": [
    "ptrdname",
    "ipv4addr"
  ],
  "properties": {
    "ptrdname": {
      "type": "string",
      "description": "The domain name the PTR record points to."
    },
    "ipv4addr": {
      "type": "string",
      "format": "ipv4",
      "description": "The IPv4 address."
    },
    "view": {
      "type": "string",
      "description": "The DNS view."
    },
    "comment": {
      "type": "string",
      "description": "A descriptive comment.",
      "maxLength": 256
    }
  }
}