| title | passwordValidationInformation resource type |
|---|---|
| description | Exposes the properties that specify whether a user's password is valid when validated against the tenant's password validation policy. |
| author | yyuank |
| ms.reviewer | iamut |
| ms.localizationpriority | medium |
| ms.subservice | entra-users |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph
[!INCLUDE beta-disclaimer]
Exposes the properties that specify whether a user's password is valid, when validated against the tenant's password validation policy. This resource also returns the list of rules against which the password was validated and whether the user's password passed those roles.
| Property | Type | Description |
|---|---|---|
| isValid | Boolean | Specifies whether the password is valid based on the calculation of the results in the validationResults property. Not nullable. Read-only. |
| validationResults | validationResult collection | The list of password validation rules and whether the password passed those rules. Not nullable. Read-only. |
None.
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.passwordValidationInformation",
"isValid": "Boolean",
"validationResults": [
{
"@odata.type": "microsoft.graph.validationResult"
}
]
}