Microsoft Graph · Schema
userRegistrationMethodSummary
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| totalUserCount | number | Total number of users in the tenant. |
| userRegistrationMethodCounts | array | Number of users registered for each authentication method. |
| userRoles | object | The role type of the user. The possible values are: all, privilegedAdmin, admin, user, unknownFutureValue. |
| userTypes | object | User type. The possible values are: all, member, guest, unknownFutureValue. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.userRegistrationMethodSummary",
"title": "userRegistrationMethodSummary",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"totalUserCount": {
"type": "number",
"description": "Total number of users in the tenant.",
"format": "int64"
},
"userRegistrationMethodCounts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.userRegistrationMethodCount"
},
"description": "Number of users registered for each authentication method."
},
"userRoles": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.includedUserRoles"
},
{
"type": "object",
"nullable": true
}
],
"description": "The role type of the user. The possible values are: all, privilegedAdmin, admin, user, unknownFutureValue."
},
"userTypes": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.includedUserTypes"
},
{
"type": "object",
"nullable": true
}
],
"description": "User type. The possible values are: all, member, guest, unknownFutureValue."
},
"@odata.type": {
"type": "string"
}
}
}