Edit

principalResourceMembershipsScope resource type

Namespace: microsoft.graph

In an accessReviewScheduleDefinition, the scope property can be configured with a principalResourceMembershipsScope object to review selected principals' access to selected resources.

Inherits from accessReviewScope.

Properties

Property Type Description
principalScopes accessReviewScope collection Defines the scopes of the principals whose access to resources are reviewed in the access review.
resourceScopes accessReviewScope collection Defines the scopes of the resources for which access is reviewed.

You must also specify the @odata.type type property with the value #microsoft.graph.principalResourceMembershipsScope. For more about configuration options for scope using principalResourceMembershipsScope, see Configure the scope of your access review definition using the Microsoft Graph API.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.principalResourceMembershipsScope",
  "principalScopes": [
    {
      "@odata.type": "microsoft.graph.accessReviewScope"
    }
  ],
  "resourceScopes": [
    {
      "@odata.type": "microsoft.graph.accessReviewScope"
    }
  ]
}