Cloudflare · Schema

DnsRecord

AI GatewayAPI GatewayArtificial IntelligenceCDNCloudContainersDDoS ProtectionDNSEdgeEdge ComputingObject StoragePlatformReal-Time CommunicationSecurityServerlessWeb Performance

Properties

Name Type Description
id string The unique identifier of the DNS record.
zone_id string The zone identifier.
zone_name string The zone name.
name string The DNS record name.
content string The DNS record content.
ttl integer Time to live in seconds.
proxied boolean Whether the record is proxied through Cloudflare.
proxiable boolean Whether the record can be proxied.
locked boolean Whether the record is locked.
comment string A comment about the DNS record.
tags array Custom tags for the DNS record.
created_on string When the record was created.
modified_on string When the record was last modified.
View JSON Schema on GitHub

JSON Schema

cloudflare-dns-dns-record-schema.json Raw ↑
{
  "$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."
    }
  }
}