Zapier · Schema

Links

The links object returned in paginated response bodies.

IntegrationsiPaaS

Properties

Name Type Description
next stringnull The URL of the next page of paginated results.
prev stringnull The URL of the previous page of paginated results.
View JSON Schema on GitHub

JSON Schema

zapier-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Links",
  "title": "Links",
  "type": "object",
  "description": "The links object returned in paginated response bodies.",
  "properties": {
    "next": {
      "type": [
        "string",
        "null"
      ],
      "description": "The URL of the next page of paginated results.",
      "example": "example-value"
    },
    "prev": {
      "type": [
        "string",
        "null"
      ],
      "description": "The URL of the previous page of paginated results.",
      "example": "example-value"
    }
  }
}