Kong · Schema

EventGatewayModifyHeaderRemoveAction

An action that removes a header by key.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

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