AckdbPaginationMeta

Pagination metadata included in paginated responses.

Properties

totalintegerrequired

Total number of records matching the query.

limitintegerrequired

Maximum number of records returned in this response.

offsetintegerrequired

Number of records skipped.

totalIsLowerBoundboolean

When 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
}