Share feedback
Answers are generated based on the documentation.

Schema

page

Type: object

count

Type: integer

total number of results available across all pages
All schema constraints and annotations
{
  "description": "total number of results available across all pages",
  "type": "integer"
}
next

Type: string | null

link to next page of results if any
All schema constraints and annotations
{
  "description": "link to next page of results if any",
  "type": [
    "string",
    "null"
  ]
}
previous

Type: string | null

link to previous page of results if any
All schema constraints and annotations
{
  "description": "link to previous page of results  if any",
  "type": [
    "string",
    "null"
  ]
}
All schema constraints and annotations
{
  "properties": {
    "count": {
      "description": "total number of results available across all pages",
      "type": "integer"
    },
    "next": {
      "description": "link to next page of results if any",
      "type": [
        "string",
        "null"
      ]
    },
    "previous": {
      "description": "link to previous page of results  if any",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "type": "object"
}