Infoblox · Schema

RecordMXCreate

CloudDDIDHCPDNSIPAMNetwork ManagementSecurityThreat Intelligence

Properties

Name Type Description
name string The domain name.
mail_exchanger string The mail exchanger hostname.
preference integer The preference value.
view string The DNS view.
comment string A descriptive comment.
View JSON Schema on GitHub

JSON Schema

infoblox-recordmxcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecordMXCreate",
  "title": "RecordMXCreate",
  "type": "object",
  "required": [
    "name",
    "mail_exchanger",
    "preference"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The domain name."
    },
    "mail_exchanger": {
      "type": "string",
      "description": "The mail exchanger hostname."
    },
    "preference": {
      "type": "integer",
      "description": "The preference value.",
      "minimum": 0,
      "maximum": 65535
    },
    "view": {
      "type": "string",
      "description": "The DNS view."
    },
    "comment": {
      "type": "string",
      "description": "A descriptive comment.",
      "maxLength": 256
    }
  }
}