Kong · Schema

DefaultEmailTemplateContent

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-defaultemailtemplatecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultEmailTemplateContent",
  "title": "DefaultEmailTemplateContent",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "nullable": false
    },
    "title": {
      "type": "string",
      "nullable": false
    },
    "body": {
      "type": "string",
      "nullable": false
    },
    "button_label": {
      "type": "string",
      "nullable": false
    }
  },
  "required": [
    "subject",
    "title",
    "body"
  ]
}