Microsoft Graph · Schema

scopeBase

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
identity string The identifier for the scope. This could be a user ID, group ID, or a keyword like 'All' for tenant scope.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphscopebase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.scopeBase",
  "title": "scopeBase",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "identity": {
      "type": "string",
      "description": "The identifier for the scope. This could be a user ID, group ID, or a keyword like 'All' for tenant scope.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.groupScope": "#/components/schemas/microsoft.graph.groupScope",
      "#microsoft.graph.tenantScope": "#/components/schemas/microsoft.graph.tenantScope",
      "#microsoft.graph.userScope": "#/components/schemas/microsoft.graph.userScope"
    }
  }
}