Kong · Schema

CatalogResourceMapping

Describes a mapping between a catalog resource and a service.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The resource mapping ID.
resource object
service object
created_at object
View JSON Schema on GitHub

JSON Schema

kong-catalogresourcemapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogResourceMapping",
  "title": "CatalogResourceMapping",
  "description": "Describes a mapping between a catalog resource and a service.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The resource mapping ID.",
      "type": "string",
      "format": "uuid",
      "example": "d277faad-ed4e-4c56-a0fb-acce065dee34"
    },
    "resource": {
      "$ref": "#/components/schemas/CatalogResourceRef"
    },
    "service": {
      "$ref": "#/components/schemas/CatalogServiceRef"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    }
  },
  "required": [
    "id",
    "resource",
    "service",
    "created_at"
  ]
}