Affinity · Schema

Pagination

CRMRelationship IntelligencePrivate EquityVenture CapitalContactsOrganizationsOpportunitiesDeal Management

Properties

Name Type Description
prevUrl string URL for the previous page
nextUrl string URL for the next page
View JSON Schema on GitHub

JSON Schema

affinity-pagination-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "prevUrl": {
      "description": "URL for the previous page",
      "type": "string",
      "format": "uri",
      "examples": [
        "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw"
      ],
      "nullable": true
    },
    "nextUrl": {
      "description": "URL for the next page",
      "type": "string",
      "format": "uri",
      "examples": [
        "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
      ],
      "nullable": true
    }
  },
  "examples": [
    {
      "prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw",
      "nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA"
    }
  ]
}