Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.57 KB

File metadata and controls

48 lines (39 loc) · 1.57 KB
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

passwordValidationInformation resource type

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.

Properties

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.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.passwordValidationInformation",
  "isValid": "Boolean",
  "validationResults": [
    {
      "@odata.type": "microsoft.graph.validationResult"
    }
  ]
}