Microsoft Graph · Schema
microsoft.graph.accessReviewStage
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.accessReviewStage",
"title": "microsoft.graph.accessReviewStage",
"allOf": [
{
"$ref": "#/components/schemas/microsoft.graph.entity"
},
{
"title": "accessReviewStage",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"endDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "The date and time in ISO 8601 format and UTC time when the review stage is scheduled to end. This property is the cumulative total of the durationInDays for all stages. Read-only.",
"format": "date-time",
"nullable": true
},
"fallbackReviewers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.accessReviewReviewerScope"
},
"description": "This collection of reviewer scopes is used to define the list of fallback reviewers. These fallback reviewers are notified to take action if no users are found from the list of reviewers specified. This could occur when either the group owner is specified as the reviewer but the group owner doesn't exist, or manager is specified as reviewer but a user's manager doesn't exist."
},
"reviewers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.accessReviewReviewerScope"
},
"description": "This collection of access review scopes is used to define who the reviewers are. For examples of options for assigning reviewers, see Assign reviewers to your access review definition using the Microsoft Graph API."
},
"startDateTime": {
"pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
"type": "string",
"description": "The date and time in ISO 8601 format and UTC time when the review stage is scheduled to start. Read-only.",
"format": "date-time",
"nullable": true
},
"status": {
"type": "string",
"description": "Specifies the status of an accessReviewStage. Possible values: Initializing, NotStarted, Starting, InProgress, Completing, Completed, AutoReviewing, and AutoReviewed. Supports $orderby, and $filter (eq only). Read-only.",
"nullable": true
},
"decisions": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem"
},
"description": "Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed.",
"x-ms-navigationProperty": true
},
"@odata.type": {
"type": "string"
}
}
}
],
"x-ms-discriminator-value": "#microsoft.graph.accessReviewStage"
}