Kong · Schema

IntegrationRef

Short-hand descriptor of an integration installed within the catalog.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

kong-integrationref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationRef",
  "title": "IntegrationRef",
  "description": "Short-hand descriptor of an integration installed within the catalog.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "gateway-manager"
    },
    "display_name": {
      "type": "string",
      "example": "gateway-manager"
    },
    "instance": {
      "$ref": "#/components/schemas/IntegrationInstanceRef"
    }
  },
  "required": [
    "name",
    "display_name",
    "instance"
  ]
}