HubSpot · Schema

AssociationResult

Association results for an object

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
results array
paging object Pagination information
View JSON Schema on GitHub

JSON Schema

hubspot-commerce-payments-association-result-schema.json Raw ↑
{
  "type": "object",
  "description": "Association results for an object",
  "properties": {
    "results": {
      "type": "array",
      "example": [
        {
          "id": "500123",
          "type": "standard"
        }
      ],
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      }
    },
    "paging": {
      "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": "AssociationResult"
}