Kong · Schema

EmailDelivery

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
enabled boolean
from_email string
reply_to_email string
created_at object
updated_at object
View JSON Schema on GitHub

JSON Schema

kong-emaildelivery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailDelivery",
  "title": "EmailDelivery",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "from_email": {
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "reply_to_email": {
      "type": "string",
      "format": "email",
      "nullable": true
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    }
  },
  "additionalProperties": false,
  "required": [
    "enabled",
    "from_email",
    "reply_to_email",
    "created_at",
    "updated_at"
  ]
}