Kong · Schema

MoveEventGatewayPolicy

Defines the position of a policy relative to the policy chain.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
index integer The position of the policy relative to the policy chain.
View JSON Schema on GitHub

JSON Schema

kong-moveeventgatewaypolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MoveEventGatewayPolicy",
  "title": "MoveEventGatewayPolicy",
  "description": "Defines the position of a policy relative to the policy chain.",
  "type": "object",
  "properties": {
    "index": {
      "description": "The position of the policy relative to the policy chain.",
      "type": "integer",
      "example": 2,
      "minimum": 0
    }
  },
  "required": [
    "index"
  ]
}