Kong · Schema

CatalogResourceRef

Short-hand descriptor of a catalog resource.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen-Source

Properties

Name Type Description
id object
name string The name of the resource.
integration object
type object
config object
View JSON Schema on GitHub

JSON Schema

kong-catalogresourceref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogResourceRef",
  "title": "CatalogResourceRef",
  "description": "Short-hand descriptor of a catalog resource.",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/CatalogResourceId"
    },
    "name": {
      "description": "The name of the resource.",
      "type": "string",
      "nullable": true
    },
    "integration": {
      "$ref": "#/components/schemas/IntegrationRef"
    },
    "type": {
      "$ref": "#/components/schemas/CatalogResourceType"
    },
    "config": {
      "$ref": "#/components/schemas/CatalogResourceConfig"
    }
  },
  "required": [
    "id",
    "name",
    "type",
    "config",
    "integration"
  ]
}