> ## Documentation Index
> Fetch the complete documentation index at: https://auth0.generaltranslation.app/llms.txt
> Use this file to discover all available pages before exploring further.

# PasswordValidationResult

```ts Example theme={null}
export interface PasswordValidationResult {
  /**
   * Overall outcome of all password policy checks.
   *
   * `true` only if every rule in {@link PasswordComplexityRule} has `status` equal to `"valid"`.
   */
  isValid: boolean;

  /**
   * 評価されたパスワードルールの配列。
   *
   * 各項目は {@link PasswordComplexityRule} であり、
   * {@link PasswordComplexityRule.status | status} フィールドには
   * そのルールに対する検証結果が反映されます。
   */
  results: PasswordComplexityRule[];
}
```

<div id="properties">
  ## プロパティ
</div>

<ParamField body="isValid" type="boolean">
  すべてのパスワードポリシーチェックの全体的な結果です。

  [PasswordComplexityRule](/docs/ja-JP/libraries/acul/js-sdk/Screens/interfaces/PasswordComplexityRule) のすべてのルールで `status` が `"valid"` の場合にのみ `true` になります。
</ParamField>

<ParamField body="results" type={<span><a href="/docs/libraries/acul/js-sdk/Screens/interfaces/PasswordComplexityRule">PasswordComplexityRule</a></span>}>
  評価されたパスワードルールの配列です。

  各要素は [PasswordComplexityRule](/docs/ja-JP/libraries/acul/js-sdk/Screens/interfaces/PasswordComplexityRule) であり、その
  [status](/docs/ja-JP/libraries/acul/js-sdk/Screens/interfaces/PasswordComplexityRule#status) フィールドには、そのルールに対して計算された検証結果が反映されます。
</ParamField>
