Microsoft Graph · Schema

provisioningStatusInfo

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
errorInformation object If status isn't success/ skipped details for the error are contained in this.
status object The possible values are: success, warning, failure, skipped, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprovisioningstatusinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.provisioningStatusInfo",
  "title": "provisioningStatusInfo",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "errorInformation": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.provisioningErrorInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "If status isn't success/ skipped details for the error are contained in this."
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.provisioningResult"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The possible values are: success, warning, failure, skipped, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}