Skip to main content

Naming Policies

This table lists the naming patterns enforced for various fields throughout UDMG.

Policy NameRegexDescription
Standard Naming Pattern^[a-zA-Z0-9_-]{1, 255}$

Matches any string that:

  • Is 1 to 255 characters long
  • Contains only letters, numbers, underscores, or hyphens
  • Has no spaces or other special characters
Username Pattern^[a-zA-Z0-9_.@-]{1,255}$

Matches any string that:

  • Is 1 to 255 characters long
  • Contains only letters, numbers, underscores, periods, @ signs, or hyphens
  • Has no spaces or other special characters
Email Address Pattern[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}Standard format for any valid email address.