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