{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.audioRoutingGroup", "title": "microsoft.graph.audioRoutingGroup", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "audioRoutingGroup", "required": [ "@odata.type" ], "type": "object", "properties": { "receivers": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "List of receiving participant ids." }, "routingMode": { "$ref": "#/components/schemas/microsoft.graph.routingMode" }, "sources": { "type": "array", "items": { "type": "string", "nullable": true }, "description": "List of source participant ids." }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.audioRoutingGroup" }