Kong · Schema

CursorMetaPage

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
first string URI to the first page
last string URI to the last page
next string URI to the next page
previous string URI to the previous page
size number Requested page size
View JSON Schema on GitHub

JSON Schema

kong-cursormetapage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CursorMetaPage",
  "title": "CursorMetaPage",
  "type": "object",
  "properties": {
    "first": {
      "description": "URI to the first page",
      "type": "string",
      "format": "path"
    },
    "last": {
      "description": "URI to the last page",
      "type": "string",
      "format": "path"
    },
    "next": {
      "description": "URI to the next page",
      "type": "string",
      "format": "path",
      "nullable": true
    },
    "previous": {
      "description": "URI to the previous page",
      "type": "string",
      "format": "path",
      "nullable": true
    },
    "size": {
      "description": "Requested page size",
      "type": "number",
      "example": 10
    }
  },
  "required": [
    "size",
    "next",
    "previous"
  ]
}