{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-schema/voice-conference-member-schema.json", "title": "ConferenceMember", "description": "ConferenceMember schema from Bandwidth voice API", "type": "object", "properties": { "callId": { "type": "string", "description": "The call ID of the conference member" }, "conferenceId": { "type": "string", "description": "The conference ID" }, "memberUrl": { "type": "string", "format": "uri", "description": "The URL for this member resource" }, "mute": { "type": "boolean", "description": "Whether the member is muted" }, "hold": { "type": "boolean", "description": "Whether the member is on hold" }, "callIdsToCoach": { "type": "array", "items": { "type": "string" }, "description": "List of call IDs that this member is coaching" } } }