Microsoft Graph · Schema
userSummary
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| failedTasks | number | The number of failed tasks for users in a user summary. |
| failedUsers | number | The number of failed users in a user summary. |
| successfulUsers | number | The number of successful users in a user summary. |
| totalTasks | number | The total tasks of users in a user summary. |
| totalUsers | number | The total number of users in a user summary |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.identityGovernance.userSummary",
"title": "userSummary",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"failedTasks": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of failed tasks for users in a user summary.",
"format": "int32"
},
"failedUsers": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of failed users in a user summary.",
"format": "int32"
},
"successfulUsers": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The number of successful users in a user summary.",
"format": "int32"
},
"totalTasks": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The total tasks of users in a user summary.",
"format": "int32"
},
"totalUsers": {
"maximum": 2147483647,
"minimum": -2147483648,
"type": "number",
"description": "The total number of users in a user summary",
"format": "int32"
},
"@odata.type": {
"type": "string"
}
}
}