HubSpot · Schema

AssociationType

An association type definition

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

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

JSON Schema

hubspot-commerce-payments-association-type-schema.json Raw ↑
{
  "type": "object",
  "description": "An association type definition",
  "properties": {
    "associationCategory": {
      "type": "string",
      "description": "The category of the association",
      "example": "HUBSPOT_DEFINED",
      "enum": [
        "HUBSPOT_DEFINED",
        "USER_DEFINED",
        "INTEGRATOR_DEFINED"
      ]
    },
    "associationTypeId": {
      "type": "integer",
      "description": "The numeric ID of the association type",
      "example": 500123
    }
  },
  "required": [
    "associationCategory",
    "associationTypeId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AssociationType"
}