Microsoft Graph · Schema

taskReportSummary

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
failedTasks number The number of failed tasks in a report.
successfulTasks number The total number of successful tasks in a report.
totalTasks number The total number of tasks in a report.
unprocessedTasks number The number of unprocessed tasks in a report.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidentitygovernancetaskreportsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.identityGovernance.taskReportSummary",
  "title": "taskReportSummary",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "failedTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of failed tasks in a report.",
      "format": "int32"
    },
    "successfulTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of successful tasks in a report.",
      "format": "int32"
    },
    "totalTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of tasks in a report.",
      "format": "int32"
    },
    "unprocessedTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of unprocessed tasks in a report.",
      "format": "int32"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}