{ "$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" }