accessReviewReviewerScope resource type

Namespace: microsoft.graph

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.
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.
queryType String The type of query. Examples include MicrosoftGraph and ARM.

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",
  "queryRoot": "String",
  "queryType": "String"
}