linode · Schema

DomainRequest

Properties

Name Type Description
domain string The domain name.
type string Whether this is a master or slave zone.
soa_email string The SOA email address.
description string A description for this domain.
tags array Tags for this domain.
View JSON Schema on GitHub

JSON Schema

linode-domainrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DomainRequest",
  "title": "DomainRequest",
  "type": "object",
  "required": [
    "domain",
    "type"
  ],
  "properties": {
    "domain": {
      "type": "string",
      "description": "The domain name."
    },
    "type": {
      "type": "string",
      "enum": [
        "master",
        "slave"
      ],
      "description": "Whether this is a master or slave zone."
    },
    "soa_email": {
      "type": "string",
      "format": "email",
      "description": "The SOA email address."
    },
    "description": {
      "type": "string",
      "description": "A description for this domain."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags for this domain."
    }
  }
}