HubSpot · Schema

Paging

Pagination information

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
next object
prev object
View JSON Schema on GitHub

JSON Schema

hubspot-commerce-payments-paging-schema.json Raw ↑
{
  "type": "object",
  "description": "Pagination information",
  "properties": {
    "next": {
      "type": "object",
      "example": {
        "after": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      },
      "properties": {
        "after": {
          "type": "string",
          "description": "Cursor for the next page"
        },
        "link": {
          "type": "string",
          "description": "Link to the next page"
        }
      }
    },
    "prev": {
      "type": "object",
      "example": {
        "before": "example-value",
        "link": "https://app.hubspot.com/contacts/12345"
      },
      "properties": {
        "before": {
          "type": "string",
          "description": "Cursor for the previous page"
        },
        "link": {
          "type": "string",
          "description": "Link to the previous page"
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Paging"
}