Kong · Schema

Method

The HTTP method of an API Operation.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-method-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Method",
  "title": "Method",
  "description": "The HTTP method of an API Operation.",
  "type": "string",
  "enum": [
    "GET",
    "POST",
    "PUT",
    "DELETE",
    "PATCH",
    "OPTIONS",
    "HEAD",
    "CONNECT",
    "TRACE"
  ],
  "readOnly": true,
  "x-speakeasy-unknown-values": "allow"
}