Microsoft Graph · Schema
provisioningErrorInfo
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| additionalDetails | string | Additional details if there's error. |
| errorCategory | object | Categorizes the error code. Possible values are failure, nonServiceFailure, success, unknownFutureValue |
| errorCode | string | Unique error code if any occurred. Learn more |
| reason | string | Summarizes the status and describes why the status happened. |
| recommendedAction | string | Provides the resolution for the corresponding error. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.provisioningErrorInfo",
"title": "provisioningErrorInfo",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"additionalDetails": {
"type": "string",
"description": "Additional details if there's error.",
"nullable": true
},
"errorCategory": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.provisioningStatusErrorCategory"
},
{
"type": "object",
"nullable": true
}
],
"description": "Categorizes the error code. Possible values are failure, nonServiceFailure, success, unknownFutureValue"
},
"errorCode": {
"type": "string",
"description": "Unique error code if any occurred. Learn more",
"nullable": true
},
"reason": {
"type": "string",
"description": "Summarizes the status and describes why the status happened.",
"nullable": true
},
"recommendedAction": {
"type": "string",
"description": "Provides the resolution for the corresponding error.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}