Microsoft Graph · Schema

runSummary

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
failedRuns number The number of failed workflow runs.
failedTasks number The number of failed tasks of a workflow.
successfulRuns number The number of successful workflow runs.
totalRuns number The total number of runs for a workflow.
totalTasks number The total number of tasks processed by a workflow.
totalUsers number The total number of users processed by a workflow.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphidentitygovernancerunsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.identityGovernance.runSummary",
  "title": "runSummary",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "failedRuns": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of failed workflow runs.",
      "format": "int32"
    },
    "failedTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of failed tasks of a workflow.",
      "format": "int32"
    },
    "successfulRuns": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The number of successful workflow runs.",
      "format": "int32"
    },
    "totalRuns": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of runs for a workflow.",
      "format": "int32"
    },
    "totalTasks": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of tasks processed by a workflow.",
      "format": "int32"
    },
    "totalUsers": {
      "maximum": 2147483647,
      "minimum": -2147483648,
      "type": "number",
      "description": "The total number of users processed by a workflow.",
      "format": "int32"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}