HubSpot · Schema

AssociationType

Type of association

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
associationCategory string The category of association
associationTypeId integer The association type ID
View JSON Schema on GitHub

JSON Schema

engagement-notes-association-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/engagement-notes-association-type-schema.json",
  "title": "AssociationType",
  "description": "Type of association",
  "type": "object",
  "properties": {
    "associationCategory": {
      "type": "string",
      "enum": [
        "HUBSPOT_DEFINED",
        "USER_DEFINED",
        "INTEGRATOR_DEFINED"
      ],
      "description": "The category of association",
      "example": "HUBSPOT_DEFINED"
    },
    "associationTypeId": {
      "type": "integer",
      "description": "The association type ID",
      "example": 202
    }
  },
  "required": [
    "associationCategory",
    "associationTypeId"
  ]
}