Kong · Schema

CreateCatalogResourceMappingResourceByConfig

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
integration_instance string The `id` or `name` of the integration instance the resource belongs to.
type object
config object
View JSON Schema on GitHub

JSON Schema

kong-createcatalogresourcemappingresourcebyconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateCatalogResourceMappingResourceByConfig",
  "title": "CreateCatalogResourceMappingResourceByConfig",
  "type": "object",
  "properties": {
    "integration_instance": {
      "description": "The `id` or `name` of the integration instance the resource belongs to.",
      "type": "string",
      "example": "aws-lambda-prod"
    },
    "type": {
      "$ref": "#/components/schemas/CatalogResourceType"
    },
    "config": {
      "$ref": "#/components/schemas/CatalogResourceConfig"
    }
  },
  "additionalProperties": false,
  "required": [
    "integration_instance",
    "type",
    "config"
  ]
}