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