Microsoft Graph · Schema

defaultUserRolePermissions

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
allowedToCreateApps boolean Indicates whether the default user role can create applications. This setting corresponds to the Users can register applications setting in the User settings menu in the Microsoft Entra admin center.
allowedToCreateSecurityGroups boolean Indicates whether the default user role can create security groups. This setting corresponds to the following menus in the Microsoft Entra admin center: The Users can create security groups in Microso
allowedToCreateTenants boolean Indicates whether the default user role can create tenants. This setting corresponds to the Restrict non-admin users from creating tenants setting in the User settings menu in the Microsoft Entra admi
allowedToReadBitlockerKeysForOwnedDevice boolean Indicates whether the registered owners of a device can read their own BitLocker recovery keys with default user role.
allowedToReadOtherUsers boolean Indicates whether the default user role can read other users. DO NOT SET THIS VALUE TO false.
permissionGrantPoliciesAssigned array Indicates if user consent to apps is allowed, and if it is, which permission to grant consent and which app consent policy (permissionGrantPolicy) govern the permission for users to grant consent. Val
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdefaultuserrolepermissions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.defaultUserRolePermissions",
  "title": "defaultUserRolePermissions",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "allowedToCreateApps": {
      "type": "boolean",
      "description": "Indicates whether the default user role can create applications. This setting corresponds to the Users can register applications setting in the User settings menu in the Microsoft Entra admin center."
    },
    "allowedToCreateSecurityGroups": {
      "type": "boolean",
      "description": "Indicates whether the default user role can create security groups. This setting corresponds to the following menus in the Microsoft Entra admin center:  The Users can create security groups in Microsoft Entra admin centers, API or PowerShell setting in the Group settings menu.  Users can create security groups setting in the User settings menu."
    },
    "allowedToCreateTenants": {
      "type": "boolean",
      "description": "Indicates whether the default user role can create tenants. This setting corresponds to the Restrict non-admin users from creating tenants setting in the User settings menu in the Microsoft Entra admin center.  When this setting is false, users assigned the Tenant Creator role can still create tenants.",
      "nullable": true
    },
    "allowedToReadBitlockerKeysForOwnedDevice": {
      "type": "boolean",
      "description": "Indicates whether the registered owners of a device can read their own BitLocker recovery keys with default user role.",
      "nullable": true
    },
    "allowedToReadOtherUsers": {
      "type": "boolean",
      "description": "Indicates whether the default user role can read other users. DO NOT SET THIS VALUE TO false."
    },
    "permissionGrantPoliciesAssigned": {
      "type": "array",
      "items": {
        "type": "string",
        "nullable": true
      },
      "description": "Indicates if user consent to apps is allowed, and if it is, which permission to grant consent and which app consent policy (permissionGrantPolicy) govern the permission for users to grant consent. Value should be in the format managePermissionGrantsForSelf.{id}, where {id} is the id of a built-in or custom app consent policy. An empty list indicates user consent to apps is disabled."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}