{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.callRecordingEventMessageDetail", "title": "microsoft.graph.callRecordingEventMessageDetail", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.eventMessageDetail" }, { "title": "callRecordingEventMessageDetail", "required": [ "@odata.type" ], "type": "object", "properties": { "callId": { "type": "string", "description": "Unique identifier of the call.", "nullable": true }, "callRecordingDisplayName": { "type": "string", "description": "Display name for the call recording.", "nullable": true }, "callRecordingDuration": { "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$", "type": "string", "description": "Duration of the call recording.", "format": "duration", "nullable": true }, "callRecordingStatus": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecordingStatus" }, { "type": "object", "nullable": true } ], "description": "Status of the call recording. The possible values are: success, failure, initial, chunkFinished, unknownFutureValue." }, "callRecordingUrl": { "type": "string", "description": "Call recording URL.", "nullable": true }, "initiator": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.identitySet" }, { "type": "object", "nullable": true } ], "description": "Initiator of the event." }, "meetingOrganizer": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.identitySet" }, { "type": "object", "nullable": true } ], "description": "Organizer of the meeting." }, "@odata.type": { "type": "string", "default": "#microsoft.graph.callRecordingEventMessageDetail" } } } ], "x-ms-discriminator-value": "#microsoft.graph.callRecordingEventMessageDetail" }