Kong · Schema

PartialLink

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The plugin's unique identifier
instance_name string The instance name of the plugin
name string The plugin's name
View JSON Schema on GitHub

JSON Schema

kong-partiallink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartialLink",
  "title": "PartialLink",
  "type": "object",
  "properties": {
    "id": {
      "description": "The plugin's unique identifier",
      "type": "string"
    },
    "instance_name": {
      "description": "The instance name of the plugin",
      "type": "string"
    },
    "name": {
      "description": "The plugin's name",
      "type": "string"
    }
  },
  "required": [
    "id",
    "name"
  ]
}