Kong · Schema

EmailDomain

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
domain string
verification object
dns_validation_records array
created_at object
updated_at object
View JSON Schema on GitHub

JSON Schema

kong-emaildomain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailDomain",
  "title": "EmailDomain",
  "type": "object",
  "properties": {
    "domain": {
      "type": "string"
    },
    "verification": {
      "$ref": "#/components/schemas/EmailDomainVerification"
    },
    "dns_validation_records": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DNSRecord"
      },
      "readOnly": true
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    }
  },
  "additionalProperties": false,
  "required": [
    "domain",
    "verification",
    "dns_validation_records",
    "created_at",
    "updated_at"
  ]
}