Kong · Schema

CursorPageParameters

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
size integer The number of items included per page.
after string Cursor param specifying the page (i.e. the next page) of data returned.
before string Cursor param specifying the page (i.e. the previous page) of data returned.
View JSON Schema on GitHub

JSON Schema

kong-cursorpageparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CursorPageParameters",
  "title": "CursorPageParameters",
  "type": "object",
  "properties": {
    "size": {
      "description": "The number of items included per page.",
      "type": "integer",
      "example": 10
    },
    "after": {
      "description": "Cursor param specifying the page (i.e. the next page) of data returned.",
      "type": "string",
      "example": "ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ"
    },
    "before": {
      "description": "Cursor param specifying the page (i.e. the previous page) of data returned.",
      "type": "string",
      "example": "ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ"
    }
  }
}