linode · Schema

Domain

Properties

Name Type Description
id integer The unique ID of this domain.
domain string The domain name.
type string Whether this is a master or slave zone.
status string The status of this domain.
soa_email string The SOA email address for this domain.
description string A description for this domain.
tags array Tags for this domain.
created string When this domain was created.
updated string When this domain was last updated.
ttl_sec integer The default TTL in seconds.
retry_sec integer The retry interval in seconds.
refresh_sec integer The refresh interval in seconds.
expire_sec integer The expiry time in seconds.
View JSON Schema on GitHub

JSON Schema

linode-domain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Domain",
  "title": "Domain",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The unique ID of this domain."
    },
    "domain": {
      "type": "string",
      "description": "The domain name."
    },
    "type": {
      "type": "string",
      "enum": [
        "master",
        "slave"
      ],
      "description": "Whether this is a master or slave zone."
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "disabled",
        "edit_mode"
      ],
      "description": "The status of this domain."
    },
    "soa_email": {
      "type": "string",
      "format": "email",
      "description": "The SOA email address for this domain."
    },
    "description": {
      "type": "string",
      "description": "A description for this domain."
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Tags for this domain."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "When this domain was created."
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "description": "When this domain was last updated."
    },
    "ttl_sec": {
      "type": "integer",
      "description": "The default TTL in seconds."
    },
    "retry_sec": {
      "type": "integer",
      "description": "The retry interval in seconds."
    },
    "refresh_sec": {
      "type": "integer",
      "description": "The refresh interval in seconds."
    },
    "expire_sec": {
      "type": "integer",
      "description": "The expiry time in seconds."
    }
  }
}