mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
36 lines
958 B
YAML
36 lines
958 B
YAML
Meta:
|
|
properties:
|
|
pagination:
|
|
$ref: '#/components/schemas/Pagination'
|
|
Pagination:
|
|
type: object
|
|
properties:
|
|
total:
|
|
type: integer
|
|
description: 'The total number of items'
|
|
example: 1
|
|
readOnly: true
|
|
count:
|
|
type: integer
|
|
description: 'The number of items per page'
|
|
example: 1
|
|
readOnly: true
|
|
per_page:
|
|
type: integer
|
|
description: 'The number of items per page'
|
|
example: 1
|
|
readOnly: true
|
|
current_page:
|
|
type: integer
|
|
description: 'The current page number'
|
|
example: 1
|
|
readOnly: true
|
|
total_pages:
|
|
type: integer
|
|
description: 'The total number of pages'
|
|
example: 1
|
|
readOnly: true
|
|
links:
|
|
type: array
|
|
description: 'The pagination links'
|
|
readOnly: true |