Microsoft Graph · Schema

microsoft.graph.conversationMemberRoleUpdatedEventMessageDetail

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphconversationmemberroleupdatedeventmessagedetai-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.conversationMemberRoleUpdatedEventMessageDetail",
  "title": "microsoft.graph.conversationMemberRoleUpdatedEventMessageDetail",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.eventMessageDetail"
    },
    {
      "title": "conversationMemberRoleUpdatedEventMessageDetail",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "conversationMemberRoles": {
          "type": "array",
          "items": {
            "type": "string",
            "nullable": true
          },
          "description": "Roles for the coversation member user."
        },
        "conversationMemberUser": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.teamworkUserIdentity"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Identity of the conversation member user."
        },
        "initiator": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.identitySet"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Initiator of the event."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.conversationMemberRoleUpdatedEventMessageDetail"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.conversationMemberRoleUpdatedEventMessageDetail"
}