Microsoft Graph · Schema

microsoft.graph.security.mailboxEvidence

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecuritymailboxevidence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.mailboxEvidence",
  "title": "microsoft.graph.security.mailboxEvidence",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.security.alertEvidence"
    },
    {
      "title": "mailboxEvidence",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "description": "The name associated with the mailbox.",
          "nullable": true
        },
        "primaryAddress": {
          "type": "string",
          "description": "The primary email address of the mailbox.",
          "nullable": true
        },
        "upn": {
          "type": "string",
          "description": "The user principal name of the mailbox.",
          "nullable": true
        },
        "userAccount": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.security.userAccount"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The user account of the mailbox."
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.security.mailboxEvidence"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.security.mailboxEvidence"
}