{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecordTXTCreate", "title": "RecordTXTCreate", "type": "object", "required": [ "name", "text" ], "properties": { "name": { "type": "string", "description": "The domain name." }, "text": { "type": "string", "description": "The text data." }, "view": { "type": "string", "description": "The DNS view." }, "comment": { "type": "string", "description": "A descriptive comment.", "maxLength": 256 } } }