Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.32 KB

File metadata and controls

45 lines (37 loc) · 1.32 KB
title validationResult resource type
description Exposes the properties that specify the rules against which a user's password was validated, and the validation results.
author yyuank
ms.reviewer iamut
ms.localizationpriority medium
ms.subservice entra-users
doc_type resourcePageType
ms.date 07/22/2024

validationResult resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Exposes the properties that specify the rules against which a user's password was validated, and the validation results.

Properties

Property Type Description
message String The string containing the reason for why the rule passed or not. Read-only. Not nullable.
ruleName String The string containing the name of the password validation rule that the action was validated against. Read-only. Not nullable.
validationPassed Boolean Whether the password passed or failed the validation rule. Read-only. Not nullable.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.validationResult",
  "ruleName": "String",
  "validationPassed": "Boolean",
  "message": "String"
}