{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/bandwidth/refs/heads/main/json-structure/voice-conference-member-structure.json", "name": "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": "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" } } }