{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.accessReviewQueryScope",
"title": "microsoft.graph.accessReviewQueryScope",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.accessReviewScope"
},
{
"title": "accessReviewQueryScope",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "The query representing what will be reviewed in an access review.",
"nullable": true
},
"queryRoot": {
"type": "string",
"description": "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 is specified. For example, ./manager.",
"nullable": true
},
"queryType": {
"type": "string",
"description": "Indicates the type of query. Types include MicrosoftGraph and ARM.",
"nullable": true
},
"@odata.type": {
"type": "string",
"default": "#microsoft.graph.accessReviewQueryScope"
}
},
"discriminator": {
"propertyName": "@odata.type",
"mapping": {
"#microsoft.graph.accessReviewInactiveUsersQueryScope": "#/components/schemas/microsoft.graph.accessReviewInactiveUsersQueryScope"
}
}
}
]
}