Properties
| Name | Type | Description |
|---|---|---|
| count | integer | The total number of items on the current page. |
| page | integer | Current page within the paginated list of results. |
| per_page | integer | The maximum number of items to return per page of results. |
| total_count | integer | The total number of items. |
| total_pages | integer | The total number of pages. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/rum_result_info",
"title": "rum_result_info",
"properties": {
"count": {
"description": "The total number of items on the current page.",
"example": 10,
"type": "integer"
},
"page": {
"description": "Current page within the paginated list of results.",
"example": 1,
"type": "integer"
},
"per_page": {
"description": "The maximum number of items to return per page of results.",
"example": 10,
"type": "integer"
},
"total_count": {
"description": "The total number of items.",
"example": 25,
"type": "integer"
},
"total_pages": {
"description": "The total number of pages.",
"example": 3,
"nullable": true,
"type": "integer"
}
},
"type": "object"
}