{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ConferenceParticipant", "title": "ConferenceParticipant", "type": "object", "required": [ "callId", "muted", "deafened" ], "properties": { "callId": { "type": "string", "example": "Y2lzY29z...", "description": "The callId of the call." }, "muted": { "type": "boolean", "example": true, "description": "Indicates if the participant has been muted." }, "deafened": { "type": "boolean", "example": true, "description": "Indicates if the participant has been deafened (i.e. media stream is not being transmitting to the participant)" } } }