Input for specifying an association type
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-associations-api-association-type-input-schema.json", "title": "AssociationTypeInput", "description": "Input for specifying an association type", "type": "object", "properties": { "associationCategory": { "type": "string", "enum": [ "HUBSPOT_DEFINED", "USER_DEFINED", "INTEGRATOR_DEFINED" ], "example": "HUBSPOT_DEFINED" }, "associationTypeId": { "type": "integer", "example": 500123 } }, "required": [ "associationCategory", "associationTypeId" ] }