{
"$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."
}
}
}