Kong · Schema

DefaultEmailTemplate

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
default_content object
variables array
name object
label string The label of the email template
View JSON Schema on GitHub

JSON Schema

kong-defaultemailtemplate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultEmailTemplate",
  "title": "DefaultEmailTemplate",
  "type": "object",
  "properties": {
    "default_content": {
      "$ref": "#/components/schemas/DefaultEmailTemplateContent"
    },
    "variables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EmailTemplateVariableName"
      }
    },
    "name": {
      "$ref": "#/components/schemas/EmailTemplateName"
    },
    "label": {
      "description": "The label of the email template",
      "type": "string",
      "example": "Confirm email Address"
    }
  },
  "additionalProperties": false,
  "required": [
    "default_content",
    "variables",
    "name",
    "label"
  ]
}