{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-lists-api-collection-response-membership-schema.json",
"title": "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": "string",
"format": "date-time",
"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"
}
}
}
}
}
}