linode · Schema
Pagination
Properties
| Name | Type | Description |
|---|---|---|
| page | integer | The current page number. |
| pages | integer | The total number of pages. |
| results | integer | The total number of results. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Pagination",
"title": "Pagination",
"type": "object",
"properties": {
"page": {
"type": "integer",
"description": "The current page number."
},
"pages": {
"type": "integer",
"description": "The total number of pages."
},
"results": {
"type": "integer",
"description": "The total number of results."
}
}
}