{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.domainDnsMxRecord", "title": "microsoft.graph.domainDnsMxRecord", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.domainDnsRecord" }, { "title": "domainDnsMxRecord", "required": [ "@odata.type" ], "type": "object", "properties": { "mailExchange": { "type": "string", "description": "Value used when configuring the answer/destination/value of the MX record at the DNS host." }, "preference": { "maximum": 2147483647, "minimum": -2147483648, "type": "number", "description": "Value used when configuring the Preference/Priority property of the MX record at the DNS host.", "format": "int32", "nullable": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.domainDnsMxRecord" }