A list of associations.
{ "type": "object", "description": "A list of associations.", "properties": { "results": { "type": "array", "example": [ { "id": "500123", "type": "standard" } ], "items": { "type": "object", "description": "An association between two CRM objects.", "properties": { "id": { "type": "string", "example": "500123" }, "type": { "type": "string", "example": "standard" } } } }, "paging": { "type": "object", "description": "Pagination information.", "properties": { "next": { "type": "object", "example": { "after": "example-value" }, "properties": { "after": { "type": "string", "description": "The cursor to use to get the next page of results." } } } } } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CollectionResponseAssociation" }