BigCommerce · Schema
ResponseMeta
Data about the response, including pagination and collection totals.
E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
Properties
| Name | Type | Description |
|---|---|---|
| pagination | object | Data about the response, including pagination and collection totals. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResponseMeta",
"title": "ResponseMeta",
"type": "object",
"description": "Data about the response, including pagination and collection totals.\n",
"properties": {
"pagination": {
"type": "object",
"description": "Data about the response, including pagination and collection totals.\n",
"properties": {
"total": {
"type": "integer",
"description": "Total number of items in the result set.\n"
},
"count": {
"type": "integer",
"description": "Total number of items in the collection response.\n"
},
"per_page": {
"type": "integer",
"description": "The amount of items returned in the collection per page, controlled by the limit parameter.\n"
},
"current_page": {
"type": "integer",
"description": "The page you are currently on within the collection.\n"
},
"total_pages": {
"type": "integer",
"description": "The total number of pages in the collection.\n"
},
"links": {
"type": "object",
"description": "Pagination links for the previous and 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"
}
}
}
}
}
}
}