Kong · Schema

IntegrationRefWithoutInstance

Short-hand descriptor of an integration that omits instance metadata.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string
display_name string
View JSON Schema on GitHub

JSON Schema

kong-integrationrefwithoutinstance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationRefWithoutInstance",
  "title": "IntegrationRefWithoutInstance",
  "description": "Short-hand descriptor of an integration that omits instance metadata.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "gateway-manager"
    },
    "display_name": {
      "type": "string",
      "example": "gateway-manager"
    }
  },
  "required": [
    "name",
    "display_name"
  ]
}