{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pagination_Partial", "title": "pagination_Partial", "type": "object", "description": "Data about the pagination.\n", "properties": { "count": { "type": "integer", "description": "Total number of items in the collection response.\n" }, "total": { "type": "integer", "description": "Total number of items in the result set.\n" }, "links": { "type": "object", "description": "Pagination links for the previous, current, or next parts of the whole collection.\n", "properties": { "previous": { "type": "string", "description": "Link to the previous page returned in the response.\n" }, "current": { "type": "string", "description": "Link to the current page returned in the response.\n" }, "next": { "type": "string", "description": "Link to the next page returned in the response.\n" } } }, "total_pages": { "type": "integer", "description": "The total number of pages in the collection.\n" } }, "x-internal": false }