Microsoft Graph · Schema

accessReviewReviewerScope

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name 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, .
queryType string The type of query. Examples include MicrosoftGraph and ARM.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphaccessreviewreviewerscope-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.accessReviewReviewerScope",
  "title": "accessReviewReviewerScope",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The query specifying who will be the reviewer.",
      "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, for example, ./manager, is specified. Possible value: decisions.",
      "nullable": true
    },
    "queryType": {
      "type": "string",
      "description": "The type of query. Examples include MicrosoftGraph and ARM.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}