{ "type": "object", "description": "Request body for adding or removing list members.", "properties": { "recordIdsToAdd": { "type": "array", "description": "The IDs of records to add to the list.", "example": [ "500123" ], "items": { "type": "string" } }, "recordIdsToRemove": { "type": "array", "description": "The IDs of records to remove from the list.", "example": [ "500123" ], "items": { "type": "string" } } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MembershipChangeRequest" }