{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.callRecords.media", "title": "media", "required": [ "@odata.type" ], "type": "object", "properties": { "calleeDevice": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.deviceInfo" }, { "type": "object", "nullable": true } ], "description": "Device information associated with the callee endpoint of this media." }, "calleeNetwork": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.networkInfo" }, { "type": "object", "nullable": true } ], "description": "Network information associated with the callee endpoint of this media." }, "callerDevice": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.deviceInfo" }, { "type": "object", "nullable": true } ], "description": "Device information associated with the caller endpoint of this media." }, "callerNetwork": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.networkInfo" }, { "type": "object", "nullable": true } ], "description": "Network information associated with the caller endpoint of this media." }, "label": { "type": "string", "description": "How the media was identified during media negotiation stage.", "nullable": true }, "streams": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.callRecords.mediaStream" }, "description": "Network streams associated with this media." }, "@odata.type": { "type": "string" } } }