Kong · Schema

CursorMetaWithSizeAndTotal

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
next string URI to the next page
size number Requested page size
total number Total number of objects in the collection; will only be present on the first page
View JSON Schema on GitHub

JSON Schema

kong-cursormetawithsizeandtotal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CursorMetaWithSizeAndTotal",
  "title": "CursorMetaWithSizeAndTotal",
  "type": "object",
  "properties": {
    "next": {
      "description": "URI to the next page",
      "type": "string",
      "format": "path",
      "nullable": true
    },
    "size": {
      "description": "Requested page size",
      "type": "number",
      "example": 10
    },
    "total": {
      "description": "Total number of objects in the collection; will only be present on the first page",
      "type": "number",
      "example": 974
    }
  },
  "required": [
    "size",
    "next"
  ]
}