Microsoft Graph · Schema

incomingContext

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
observedParticipantId string The ID of the participant that is under observation. Read-only.
onBehalfOf object The identity that the call is happening on behalf of.
sourceParticipantId string The ID of the participant that triggered the incoming call. Read-only.
transferor object The identity that transferred the call.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphincomingcontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.incomingContext",
  "title": "incomingContext",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "observedParticipantId": {
      "type": "string",
      "description": "The ID of the participant that is under observation. Read-only.",
      "nullable": true
    },
    "onBehalfOf": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.identitySet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The identity that the call is happening on behalf of."
    },
    "sourceParticipantId": {
      "type": "string",
      "description": "The ID of the participant that triggered the incoming call. Read-only.",
      "nullable": true
    },
    "transferor": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.identitySet"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The identity that transferred the call."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}