AhaSend · JSON Structure

Openapi V2 Dns Record Structure

DNSRecord schema from AhaSend API

Type: object Properties: 5 Required: 5
EmailTransactional EmailDeveloper ToolsSMTPWebhooks

DNSRecord is a JSON Structure definition published by AhaSend, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type host content required propagated

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ahasend/refs/heads/main/json-structure/openapi-v2-dns-record-structure.json",
  "name": "DNSRecord",
  "description": "DNSRecord schema from AhaSend API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "DNS record type (e.g., CNAME, TXT, MX)",
      "example": "example_value"
    },
    "host": {
      "type": "string",
      "description": "DNS record host/name",
      "example": "example_value"
    },
    "content": {
      "type": "string",
      "description": "DNS record content/value",
      "example": "example_value"
    },
    "required": {
      "type": "boolean",
      "description": "Whether this DNS record is required for domain verification",
      "example": true
    },
    "propagated": {
      "type": "boolean",
      "description": "Whether this DNS record has been propagated and verified",
      "example": true
    }
  },
  "required": [
    "type",
    "host",
    "content",
    "required",
    "propagated"
  ]
}