{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.callRecords.session", "title": "microsoft.graph.callRecords.session", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "session", "required": [ "@odata.type" ], "type": "object", "properties": { "callee": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.endpoint" }, { "type": "object", "nullable": true } ], "description": "Endpoint that answered the session." }, "caller": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.endpoint" }, { "type": "object", "nullable": true } ], "description": "Endpoint that initiated the session." }, "endDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "UTC time when the last user left the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z", "format": "date-time" }, "failureInfo": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.callRecords.failureInfo" }, { "type": "object", "nullable": true } ], "description": "Failure information associated with the session if the session failed." }, "isTest": { "type": "boolean", "description": "Specifies whether the session is a test.", "nullable": true }, "modalities": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.callRecords.modality" }, "description": "List of modalities present in the session. The possible values are: unknown, audio, video, videoBasedScreenSharing, data, screenSharing, unknownFutureValue." }, "startDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "UTC time when the first user joined the session. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z", "format": "date-time" }, "segments": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.callRecords.segment" }, "description": "The list of segments involved in the session. Read-only. Nullable.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.callRecords.session" }