Microsoft Graph · Schema
accessPackageAssignmentApprovalSettings
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| isApprovalRequiredForAdd | boolean | If false, then approval isn't required for new requests in this policy. |
| isApprovalRequiredForUpdate | boolean | If false, then approval isn't required for updates to requests in this policy. |
| isRequestorJustificationRequired | boolean | If false, then requestor justification isn't required for updates to requests in this policy. |
| stages | array | If approval is required, the one, two or three elements of this collection define each of the stages of approval. An empty array is present if no approval is required. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.accessPackageAssignmentApprovalSettings",
"title": "accessPackageAssignmentApprovalSettings",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"isApprovalRequiredForAdd": {
"type": "boolean",
"description": "If false, then approval isn't required for new requests in this policy.",
"nullable": true
},
"isApprovalRequiredForUpdate": {
"type": "boolean",
"description": "If false, then approval isn't required for updates to requests in this policy.",
"nullable": true
},
"isRequestorJustificationRequired": {
"type": "boolean",
"description": "If false, then requestor justification isn't required for updates to requests in this policy.",
"nullable": true
},
"stages": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.accessPackageApprovalStage"
},
"description": "If approval is required, the one, two or three elements of this collection define each of the stages of approval. An empty array is present if no approval is required."
},
"@odata.type": {
"type": "string"
}
}
}