{
"$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-membership-schema.json",
"title": "Membership",
"description": "A list membership record.",
"type": "object",
"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"
}
}
}