Validation Patterns
USP validates common identifiers (such as names, usernames, email addresses, and passwords) using predefined regular-expression (regex) patterns. These policies ensure consistent input formats and help prevent invalid values during configuration.
| Policy Name | Regex | Description |
|---|---|---|
| Standard Naming Pattern | ^[a-zA-Z0-9_-]{1,255}$ | Matches any string that:
|
| Username Pattern | ^[a-zA-Z0-9_.@-]{1,255}$ | Matches any string that:
|
| Email Address Pattern | [a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,} | Matches standard email addresses with:
|
| Password Pattern |
| Matches any password that:
|