OffsetPaginationMeta
Offset-based pagination metadata Used for APIs that use limit/offset pagination instead of page/per_page. Standard fields following REST API conventions.
Properties
| Property | Type | Required | Description |
|---|---|---|---|
count |
integer | Yes | Number of items in this response |
has_more |
boolean | Yes | Whether more items exist beyond this page |
limit |
integer | Yes | Maximum items requested |
offset |
integer | Yes | Starting offset |
total |
integer | Yes | Total number of items across all pages |
View JSON Schema
{
"type": "object",
"description": "Offset-based pagination metadata\n\nUsed for APIs that use limit/offset pagination instead of page/per_page.\nStandard fields following REST API conventions.",
"required": [
"total",
"count",
"limit",
"offset",
"has_more"
],
"properties": {
"count": {
"type": "integer",
"description": "Number of items in this response",
"minimum": 0
},
"has_more": {
"type": "boolean",
"description": "Whether more items exist beyond this page"
},
"limit": {
"type": "integer",
"format": "int64",
"description": "Maximum items requested"
},
"offset": {
"type": "integer",
"format": "int64",
"description": "Starting offset"
},
"total": {
"type": "integer",
"format": "int64",
"description": "Total number of items across all pages",
"minimum": 0
}
}
}