{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-lists-api-collection-response-membership-structure.json", "name": "CollectionResponseMembership", "description": "A paginated list of list memberships.", "type": "object", "properties": { "results": { "type": "array", "items": { "type": "object", "description": "A list membership record.", "properties": { "recordId": { "type": "string", "description": "The ID of the CRM record that is a member of the list.", "example": "500123" }, "addedAt": { "type": "datetime", "description": "The date and time the record was added to the list.", "example": "2025-03-15T14:30:00Z" } } }, "example": [ { "recordId": "500123", "addedAt": "2025-03-15T14:30:00Z" } ] }, "paging": { "type": "object", "description": "Pagination information.", "properties": { "next": { "type": "object", "properties": { "after": { "type": "string" } }, "example": { "after": "example-value" } } } } } }