MX Record

APIs.ioEngineeringPlatform

Properties

Name Type Description
content string A valid mail server hostname.
priority object
type string Record type.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-mxrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_MXRecord",
  "title": "MX Record",
  "properties": {
    "content": {
      "description": "A valid mail server hostname.",
      "example": "mx.example.com",
      "format": "hostname",
      "type": "string"
    },
    "priority": {
      "$ref": "#/components/schemas/dns-records_priority"
    },
    "type": {
      "description": "Record type.",
      "enum": [
        "MX"
      ],
      "example": "MX",
      "type": "string"
    }
  },
  "type": "object"
}