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