{ "$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" } } }