dns-records_ttl

Time To Live (TTL) of the DNS record in seconds. Setting to 1 means 'automatic'. Value must be between 60 and 86400, with the minimum reduced to 30 for Enterprise zones.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-dns-records-ttl-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/dns-records_ttl",
  "title": "dns-records_ttl",
  "anyOf": [
    {
      "example": 3600,
      "maximum": 86400,
      "minimum": 30,
      "type": "number"
    },
    {
      "enum": [
        1
      ],
      "type": "number"
    }
  ],
  "default": 1,
  "description": "Time To Live (TTL) of the DNS record in seconds. Setting to 1 means 'automatic'. Value must be between 60 and 86400, with the minimum reduced to 30 for Enterprise zones.",
  "example": 3600,
  "type": "number"
}