HubSpot · JSON Structure

Hubspot Blog Posts Paging Structure

Pagination information

Type: object Properties: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

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

Properties

next prev

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": "Pagination cursor for next page",
      "properties": {
        "after": {
          "type": "string",
          "description": "Cursor token for the next page"
        },
        "link": {
          "type": "string",
          "description": "API link to the next page"
        }
      }
    },
    "prev": {
      "type": "object",
      "description": "Pagination cursor for previous page",
      "properties": {
        "before": {
          "type": "string",
          "description": "Cursor token for the previous page"
        },
        "link": {
          "type": "string",
          "description": "API link to the previous page"
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}