{ "$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" } } }