{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Pagination", "title": "Pagination", "description": "Data about the response, including pagination and collection totals.", "type": "object", "properties": { "total": { "description": "Total number of items in the result set.", "type": "integer", "format": "int32" }, "count": { "description": "Total number of items in the collection response.", "type": "integer", "format": "int32" }, "per_page": { "description": "The amount of items returned in the collection per page, controlled by the limit parameter.", "type": "integer", "format": "int32" }, "current_page": { "description": "The page you are currently on within the collection.", "type": "integer", "format": "int32" }, "total_pages": { "description": "The total number of pages in the collection.", "type": "integer", "format": "int32" }, "links": { "$ref": "#/components/schemas/Links" } }, "x-internal": false }