Microsoft Graph · Schema

rolePermission

Contains the set of ResourceActions determining the allowed and not allowed permissions for each role.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
resourceActions array Resource Actions each containing a set of allowed and not allowed permissions.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphrolepermission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.rolePermission",
  "title": "rolePermission",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "resourceActions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.resourceAction"
      },
      "description": "Resource Actions each containing a set of allowed and not allowed permissions."
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "description": "Contains the set of ResourceActions determining the allowed and not allowed permissions for each role."
}