{ "$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-change-response-schema.json", "title": "MembershipChangeResponse", "description": "Response from a list membership change operation.", "type": "object", "properties": { "recordIdsAdded": { "type": "array", "items": { "type": "string" }, "example": [ "500123" ] }, "recordIdsAlreadyMember": { "type": "array", "items": { "type": "string" }, "example": [ "500123" ] }, "recordIdsRemoved": { "type": "array", "items": { "type": "string" }, "example": [ "500123" ] }, "recordIdsMissing": { "type": "array", "items": { "type": "string" }, "example": [ "500123" ] } } }