APIs.io Engineering Platform · Schema
Custom NS
A single account custom nameserver.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| dns_records | array | A and AAAA records associated with the nameserver. |
| ns_name | object | |
| ns_set | object | |
| status | string | Verification status of the nameserver. |
| zone_tag | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/dns-custom-nameservers_CustomNS",
"title": "Custom NS",
"description": "A single account custom nameserver.",
"properties": {
"dns_records": {
"description": "A and AAAA records associated with the nameserver.",
"items": {
"properties": {
"type": {
"description": "DNS record type.",
"enum": [
"A",
"AAAA"
],
"example": "A",
"type": "string"
},
"value": {
"description": "DNS record contents (an IPv4 or IPv6 address).",
"example": "1.1.1.1",
"type": "string"
}
}
},
"type": "array"
},
"ns_name": {
"$ref": "#/components/schemas/dns-custom-nameservers_ns_name"
},
"ns_set": {
"$ref": "#/components/schemas/dns-custom-nameservers_ns_set"
},
"status": {
"deprecated": true,
"description": "Verification status of the nameserver.",
"enum": [
"moved",
"pending",
"verified"
],
"example": "verified",
"type": "string"
},
"zone_tag": {
"$ref": "#/components/schemas/dns-custom-nameservers_schemas-identifier"
}
},
"required": [
"dns_records",
"ns_name",
"status",
"zone_tag"
],
"type": "object"
}