{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dns-records_PTRRecord", "title": "PTR Record", "properties": { "content": { "description": "Domain name pointing to the address.", "example": "example.com", "type": "string" }, "type": { "description": "Record type.", "enum": [ "PTR" ], "example": "PTR", "type": "string" } }, "type": "object" }