Kong · Schema

EmailTemplateVariable

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
description string
scope array
example string Example value of the email template variable
View JSON Schema on GitHub

JSON Schema

kong-emailtemplatevariable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EmailTemplateVariable",
  "title": "EmailTemplateVariable",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/EmailTemplateVariableName"
    },
    "description": {
      "type": "string"
    },
    "scope": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EmailTemplateName"
      }
    },
    "example": {
      "description": "Example value of the email template variable",
      "type": "string",
      "example": "My Company Portal"
    }
  },
  "required": [
    "name",
    "description",
    "scope",
    "example"
  ]
}