Kong · Schema

ServiceList

A paginated list of Service entities.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
data array
next string URI to the next page of results.
offset string Offset token for the next page.
View JSON Schema on GitHub

JSON Schema

kong-gateway-admin-service-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ServiceList",
  "type": "object",
  "description": "A paginated list of Service entities.",
  "properties": {
    "data": {
      "type": "array"
    },
    "next": {
      "type": "string",
      "description": "URI to the next page of results."
    },
    "offset": {
      "type": "string",
      "description": "Offset token for the next page."
    }
  }
}