{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/voice-update-conference-member-request-schema.json", "title": "UpdateConferenceMemberRequest", "description": "UpdateConferenceMemberRequest schema from Bandwidth voice API", "type": "object", "properties": { "mute": { "type": "boolean", "description": "Whether to mute the member" }, "hold": { "type": "boolean", "description": "Whether to place the member on hold" }, "callIdsToCoach": { "type": "array", "items": { "type": "string" }, "description": "List of call IDs that this member should coach" } } }