{ "$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" }