Kong · Schema

EmailTemplateContent

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
subject string
title string
body string
button_label string
View JSON Schema on GitHub

JSON Schema

kong-emailtemplatecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailTemplateContent",
  "title": "EmailTemplateContent",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "maxLength": 1024,
      "nullable": true
    },
    "title": {
      "type": "string",
      "maxLength": 1024,
      "nullable": true
    },
    "body": {
      "type": "string",
      "maxLength": 4096,
      "nullable": true
    },
    "button_label": {
      "type": "string",
      "maxLength": 128,
      "nullable": true
    }
  },
  "nullable": true
}