Kong · Schema

API Attributes

A set of attributes that describe the API

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

JSON Schema

kong-apiattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiAttributes",
  "title": "API Attributes",
  "description": "A set of attributes that describe the API",
  "type": "object",
  "example": {
    "env": [
      "production"
    ],
    "domains": [
      "web",
      "mobile"
    ]
  },
  "default": {},
  "additionalProperties": {
    "nullable": true,
    "description": "Set of attributes with unique keys. Each key can include lowercase letters, numbers, hyphens, and underscores.",
    "type": "array",
    "minItems": 1,
    "maxItems": 20,
    "items": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512,
      "pattern": "^[^,<>]*$"
    }
  },
  "nullable": false,
  "x-speakeasy-type-override": "any"
}