Kong · Schema

ApiImplementationListItemGatewayServiceEntity

An API Implementation list item for gateway services

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object
created_at object
updated_at object
api_id string The API identifier.
service object
View JSON Schema on GitHub

JSON Schema

kong-apiimplementationlistitemgatewayserviceentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiImplementationListItemGatewayServiceEntity",
  "title": "ApiImplementationListItemGatewayServiceEntity",
  "description": "An API Implementation list item for gateway services",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UUID"
    },
    "created_at": {
      "$ref": "#/components/schemas/CreatedAt"
    },
    "updated_at": {
      "$ref": "#/components/schemas/UpdatedAt"
    },
    "api_id": {
      "description": "The API identifier.",
      "type": "string",
      "format": "uuid",
      "example": "9f5061ce-78f6-4452-9108-ad7c02821fd5",
      "readOnly": true
    },
    "service": {
      "$ref": "#/components/schemas/ApiImplementationService"
    }
  },
  "additionalProperties": false,
  "required": [
    "id",
    "api_id",
    "created_at",
    "updated_at"
  ]
}