Kong · Schema

CatalogServiceApiMapping

Represents an API mapping associated with a service in the catalog.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string The mapping ID.
service_id string The ID of the service.
api_id string The ID of the API.
created_at string Creation timestamp.
updated_at string Last update timestamp.
View JSON Schema on GitHub

JSON Schema

kong-catalogserviceapimapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogServiceApiMapping",
  "title": "CatalogServiceApiMapping",
  "description": "Represents an API mapping associated with a service in the catalog.",
  "type": "object",
  "properties": {
    "id": {
      "description": "The mapping ID.",
      "type": "string",
      "format": "uuid"
    },
    "service_id": {
      "description": "The ID of the service.",
      "type": "string",
      "format": "uuid"
    },
    "api_id": {
      "description": "The ID of the API.",
      "type": "string",
      "format": "uuid"
    },
    "created_at": {
      "description": "Creation timestamp.",
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "description": "Last update timestamp.",
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "id",
    "service_id",
    "api_id",
    "created_at",
    "updated_at"
  ]
}