Microsoft Graph · Schema

provisioningStep

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
description string Summary of what occurred during the step.
details object Details of what occurred during the step.
name string Name of the step.
provisioningStepType object Type of step. The possible values are: import, scoping, matching, processing, referenceResolution, export, unknownFutureValue.
status object Status of the step. The possible values are: success, warning, failure, skipped, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphprovisioningstep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.provisioningStep",
  "title": "provisioningStep",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Summary of what occurred during the step.",
      "nullable": true
    },
    "details": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.detailsInfo"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Details of what occurred during the step."
    },
    "name": {
      "type": "string",
      "description": "Name of the step.",
      "nullable": true
    },
    "provisioningStepType": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.provisioningStepType"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Type of step. The possible values are: import, scoping, matching, processing, referenceResolution, export, unknownFutureValue."
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.provisioningResult"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Status of the step. The possible values are: success, warning,  failure, skipped, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}