HubSpot · JSON Structure

Hubspot Engagement Notes Paging Structure

Pagination information

Type: object Properties: 1
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Paging is a JSON Structure definition published by HubSpot, describing 1 property. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

next

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Pagination information",
  "name": "Paging",
  "properties": {
    "next": {
      "type": "object",
      "description": "Information about the next page",
      "properties": {
        "after": {
          "type": "string",
          "description": "Cursor for the next page"
        },
        "link": {
          "type": "string",
          "description": "Link to the next page"
        }
      },
      "required": [
        "after"
      ]
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}