{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dns-records_TXTRecord", "title": "TXT Record", "properties": { "content": { "description": "Text content for the record.", "example": "example text content", "type": "string" }, "type": { "description": "Record type.", "enum": [ "TXT" ], "example": "TXT", "type": "string" } }, "type": "object" }