accessReviewReviewerScope resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Note

This is the recommended API for access reviews. The previous version of the access reviews API is deprecated.

The accessReviewReviewerScope defines who will review instances of an accessReviewScheduleDefinition or user consent requests.

Reviewers can be specified as a static list of users (that is, specific users, group owners, and group members) or dynamically in which every user is reviewed by their manager, group or application owners. To create a self-review (where users review their own access) in Microsoft Entra access reviews, the reviewers property of the accessReviewScheduleDefinition should be an empty collection.

Inherits from accessReviewScope.

Properties

Property Type Description
query String The query specifying who will be the reviewer.
queryType String The type of query. Examples include MicrosoftGraph and ARM.
queryRoot String In the scenario where reviewers need to be specified dynamically, this property is used to indicate the relative source of the query. This property is only required if a relative query, for example, ./manager, is specified. Possible value: decisions.

For more about configuration options for reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API.

Relationships

None.

JSON representation

The following is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.accessReviewReviewerScope",
  "query": "String",
  "queryType": "String",
  "queryRoot": "String"
}