segment · Schema

Pagination

Properties

Name Type Description
current string Cursor pointing to the current page.
next string Cursor pointing to the next page. Null if no more pages.
totalEntries integer Total number of entries across all pages.
View JSON Schema on GitHub

JSON Schema

segment-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "current": {
      "type": "string",
      "description": "Cursor pointing to the current page."
    },
    "next": {
      "type": "string",
      "description": "Cursor pointing to the next page. Null if no more pages."
    },
    "totalEntries": {
      "type": "integer",
      "description": "Total number of entries across all pages."
    }
  }
}