{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "DnsRecord", "type": "object", "properties": { "id": { "type": "string", "description": "The unique identifier of the DNS record." }, "zone_id": { "type": "string", "description": "The zone identifier." }, "zone_name": { "type": "string", "description": "The zone name." }, "name": { "type": "string", "description": "The DNS record name." }, "content": { "type": "string", "description": "The DNS record content." }, "ttl": { "type": "integer", "description": "Time to live in seconds." }, "proxied": { "type": "boolean", "description": "Whether the record is proxied through Cloudflare." }, "proxiable": { "type": "boolean", "description": "Whether the record can be proxied." }, "locked": { "type": "boolean", "description": "Whether the record is locked." }, "comment": { "type": "string", "description": "A comment about the DNS record." }, "tags": { "type": "array", "description": "Custom tags for the DNS record." }, "created_on": { "type": "string", "description": "When the record was created." }, "modified_on": { "type": "string", "description": "When the record was last modified." } } }