> ## Documentation Index
> Fetch the complete documentation index at: https://auth0-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# PasswordComplexityRule

```ts Example theme={null}
export interface PasswordComplexityRule {
  code: string;
  label: string;
  status: 'valid' | 'error';
  isValid: boolean;
  args?: {
    count: number;
    total?: number;
    example?: string;
  };
  items?: PasswordComplexityRule[];
}
```

## Properties

<ParamField body="args?" type="object">
  <Expandable title="properties">
    <ParamField body="count" type="number" />

    <ParamField body="example?" type="string" />

    <ParamField body="total?" type="number" />
  </Expandable>
</ParamField>

<ParamField body="code" type="string" />

<ParamField body="isValid" type="boolean" />

<ParamField body="items?" type="PasswordComplexityRule" />

<ParamField body="label" type="string" />

<ParamField body="status" type="&#x22;valid&#x22;" />
