# PaginationLinks

> A schema in the One API reference. Source: https://hub.ozow.com/api-reference/one-api/schemas/pagination-links/

Standard [JSON API pagination links](https://jsonapi.org/format/#fetching-pagination). Each link repeats the query that produced the collection and carries its own `limit` and `offset`. Follow the link rather than building the next URI. The example below is the second of three pages.

## Fields

- `self` (string, uri) - The current page of data.
- `first` (string, uri) - The first page of data.
- `last` (string, uri, nullable) - The last page of data. Null when the whole collection fits on one page.
- `prev` (string, uri, nullable) - The previous page of data. Null on the first page.
- `next` (string, uri, nullable) - The next page of data. Null on the last page.
