Microsoft Graph · Schema

deviceManagementReportStatus

Possible statuses associated with a generated report.

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdevicemanagementreportstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.deviceManagementReportStatus",
  "title": "deviceManagementReportStatus",
  "enum": [
    "unknown",
    "notStarted",
    "inProgress",
    "completed",
    "failed"
  ],
  "type": "string",
  "description": "Possible statuses associated with a generated report.",
  "x-ms-enum": {
    "name": "deviceManagementReportStatus",
    "modelAsString": false,
    "values": [
      {
        "value": "unknown",
        "description": "Report generation status is unknown.",
        "name": "unknown"
      },
      {
        "value": "notStarted",
        "description": "Report generation has not started.",
        "name": "notStarted"
      },
      {
        "value": "inProgress",
        "description": "Report generation is in progress.",
        "name": "inProgress"
      },
      {
        "value": "completed",
        "description": "Report generation is completed.",
        "name": "completed"
      },
      {
        "value": "failed",
        "description": "Report generation has failed.",
        "name": "failed"
      }
    ]
  }
}