AckdbPaginationMeta
Pagination metadata included in paginated responses.
Properties
totalintegerrequiredTotal number of records matching the query.
limitintegerrequiredMaximum number of records returned in this response.
offsetintegerrequiredNumber of records skipped.
totalIsLowerBoundbooleanWhen true, `total` is a lower bound rather than an exact count. The Observe company query returns this when the count query was rejected or timed out and the result count was clamped (e.g. total=1000, totalIsLowerBound=true).
Example
AckdbPaginationMeta example
{
"total": 150,
"limit": 50,
"offset": 0,
"totalIsLowerBound": true
}