Microsoft Graph · Schema

microsoft.graph.security.userSource

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphsecurityusersource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.security.userSource",
  "title": "microsoft.graph.security.userSource",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.security.dataSource"
    },
    {
      "title": "userSource",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "email": {
          "type": "string",
          "description": "Email address of the user's mailbox."
        },
        "includedSources": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.security.sourceType"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "Specifies which sources are included in this group. The possible values are: mailbox, site."
        },
        "siteWebUrl": {
          "type": "string",
          "description": "The URL of the user's OneDrive for Business site. Read-only.",
          "nullable": true
        },
        "@odata.type": {
          "type": "string",
          "default": "#microsoft.graph.security.userSource"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.security.userSource"
}