Microsoft Graph · Schema
userRegistrationFeatureSummary
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| totalUserCount | number | Total number of users accounts, excluding those that are blocked. |
| userRegistrationFeatureCounts | array | Number of users registered or capable for multi-factor authentication, self-service password reset, and passwordless authentication. |
| 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.userRegistrationFeatureSummary",
"title": "userRegistrationFeatureSummary",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"totalUserCount": {
"type": "number",
"description": "Total number of users accounts, excluding those that are blocked.",
"format": "int64"
},
"userRegistrationFeatureCounts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/microsoft.graph.userRegistrationFeatureCount"
},
"description": "Number of users registered or capable for multi-factor authentication, self-service password reset, and passwordless authentication."
},
"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"
}
}
}