Microsoft Graph · Schema

microsoft.graph.callEndedEventMessageDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcallendedeventmessagedetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.callEndedEventMessageDetail",
  "title": "microsoft.graph.callEndedEventMessageDetail",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.eventMessageDetail"
    },
    {
      "title": "callEndedEventMessageDetail",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "callDuration": {
          "pattern": "^-?P([0-9]+D)?(T([0-9]+H)?([0-9]+M)?([0-9]+([.][0-9]+)?S)?)?$",
          "type": "string",
          "description": "Duration of the call.",
          "format": "duration",
          "nullable": true
        },
        "callEventType": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.teamworkCallEventType"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Represents the call event type. The possible values are: call, meeting, screenShare, unknownFutureValue."
        },
        "callId": {
          "type": "string",
          "description": "Unique identifier of the call.",
          "nullable": true
        },
        "callParticipants": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/microsoft.graph.callParticipantInfo"
          },
          "description": "List of call participants."
        },
        "initiator": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.identitySet"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Initiator of the event."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.callEndedEventMessageDetail"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.callEndedEventMessageDetail"
}