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. Use an accessReviewPrincipalScope object to select a well-known population of principals, such as all guest users.
resourceScopes accessReviewScope collection Defines the scopes of the resources for which access is reviewed. Use an accessReviewResourceScope object to identify the resource, or an accessReviewAccessPackageAssignmentPolicyScope object when the resource is an access package assignment policy.

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"
    }
  ]
}