Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.3 KB

File metadata and controls

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

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