HubSpot · JSON Structure

Hubspot Crm Associations Association Label Structure

A label that can be applied to associations

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

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

Properties

typeId label category

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A label that can be applied to associations",
  "name": "AssociationLabel",
  "properties": {
    "typeId": {
      "type": "integer",
      "description": "Numeric identifier for the label type"
    },
    "label": {
      "type": "string",
      "description": "Display text for the label"
    },
    "category": {
      "type": "string",
      "description": "Category of the label",
      "enum": [
        "HUBSPOT_DEFINED",
        "USER_DEFINED",
        "INTEGRATOR_DEFINED"
      ]
    }
  },
  "required": [
    "typeId",
    "label",
    "category"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}