An association type definition
{ "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" }