HubSpot · JSON Structure

Hubspot Crm Associations Association Type Structure

Defines the type of association

Type: object Properties: 3 Required: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

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

Properties

associationCategory associationTypeId label

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Defines the type of association",
  "name": "AssociationType",
  "properties": {
    "associationCategory": {
      "type": "string",
      "description": "Category of the association type",
      "enum": [
        "HUBSPOT_DEFINED",
        "USER_DEFINED",
        "INTEGRATOR_DEFINED"
      ]
    },
    "associationTypeId": {
      "type": "integer",
      "description": "Numeric identifier for the association type"
    },
    "label": {
      "type": "string",
      "description": "Human-readable label for the association"
    }
  },
  "required": [
    "associationCategory",
    "associationTypeId"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}