dns-settings_nameservers

Settings determining the nameservers through which the zone should be available.

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string Nameserver type
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-settings-nameservers-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-settings_nameservers",
  "title": "dns-settings_nameservers",
  "description": "Settings determining the nameservers through which the zone should be available.",
  "properties": {
    "type": {
      "description": "Nameserver type",
      "enum": [
        "cloudflare.standard",
        "cloudflare.standard.random",
        "custom.account",
        "custom.tenant",
        "custom.zone"
      ],
      "example": "cloudflare.standard",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}