Netlify · Schema

dnsRecord

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
hostname string
type string
value string
ttl integer
priority integer
dns_zone_id string
site_id string
flag integer
tag string
managed boolean
View JSON Schema on GitHub

JSON Schema

netlify-dnsrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dnsRecord",
  "title": "dnsRecord",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "hostname": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "value": {
      "type": "string"
    },
    "ttl": {
      "type": "integer",
      "format": "int64"
    },
    "priority": {
      "type": "integer",
      "format": "int64"
    },
    "dns_zone_id": {
      "type": "string"
    },
    "site_id": {
      "type": "string"
    },
    "flag": {
      "type": "integer"
    },
    "tag": {
      "type": "string"
    },
    "managed": {
      "type": "boolean"
    }
  }
}