Kong · Schema

EventGatewayModifyHeaderSetAction

An action that sets a header key and value.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
op string
key string The key of the header to set.
value string The value of the header to set.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewaymodifyheadersetaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayModifyHeaderSetAction",
  "title": "EventGatewayModifyHeaderSetAction",
  "description": "An action that sets a header key and value.",
  "type": "object",
  "properties": {
    "op": {
      "type": "string",
      "const": "set"
    },
    "key": {
      "description": "The key of the header to set.",
      "type": "string"
    },
    "value": {
      "description": "The value of the header to set.",
      "type": "string"
    }
  },
  "required": [
    "op",
    "key",
    "value"
  ]
}