freshworks · Schema

PaginationLinks

Properties

Name Type Description
next_page string URL for the next page of results.
prev_page string URL for the previous page of results.
View JSON Schema on GitHub

JSON Schema

freshworks-paginationlinks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationLinks",
  "title": "PaginationLinks",
  "type": "object",
  "properties": {
    "next_page": {
      "type": "string",
      "format": "uri",
      "description": "URL for the next page of results."
    },
    "prev_page": {
      "type": "string",
      "format": "uri",
      "description": "URL for the previous page of results."
    }
  }
}