Record containing the DNS zone entries for a domain managed by Marque. The record key matches the corresponding at.marque.domain record key (the FQDN).
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was last written.
domain
string
Required
Fully qualified domain name this zone belongs to.
maxLength: 253 bytesrecords
array
of
ref
#entry
Required
The DNS resource records in this zone.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"domain",
"records",
"createdAt"
],
"properties": {
"domain": {
"type": "string",
"maxLength": 253,
"description": "Fully qualified domain name this zone belongs to."
},
"records": {
"type": "array",
"items": {
"ref": "#entry",
"type": "ref"
},
"description": "The DNS resource records in this zone."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was last written."
}
}
},
"description": "Record containing the DNS zone entries for a domain managed by Marque. The record key matches the corresponding at.marque.domain record key (the FQDN)."
}