{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PaginationResponse", "type": "object", "properties": { "isEstimatedTotal": { "type": "boolean", "description": "Denotes if the 'total' property is an estimation" }, "next": { "type": "string", "description": "Next cursor to be sent, will be null when there are no more results" }, "prev": { "type": "integer", "description": "Previous cursor, currently not supported" }, "total": { "type": "integer", "description": "Total number of rows in the screen" } } }