Invite User Validation
Validation messages for user invitation requests, covering email and password fields.
Overview
| Key | Message | Description |
|---|---|---|
Email.inviteUserRequest.email | メールアドレスの形式が正しくありません。「@」とドメイン名が含まれていることを確認してください(例:[email protected])。 | The invite user email has an invalid format. |
NotBlank.inviteUserRequest.email | メールアドレスには少なくとも1文字が含まれている必要があります。メールアドレスを入力してください。 | The invite user email is empty. |
NotBlank.inviteUserRequest.password | 使用をご希望されるパスワードを入力してください。 | The invite user password is empty. |
Size.inviteUserRequest.password | パスワードはsize文字以上である必要があります。 | The invite user password does not meet the minimum length requirement. |
Validation Message Details
Email.inviteUserRequest.email
Message
メールアドレスの形式が正しくありません。「@」とドメイン名が含まれていることを確認してください(例:[email protected])。
Description
The invite user email has an invalid format.
Root Cause
- The email address does not contain
@or a valid domain name.
Resolution
- Provide a valid email address in the format
[email protected].
NotBlank.inviteUserRequest.email
Message
メールアドレスには少なくとも1文字が含まれている必要があります。メールアドレスを入力してください。
Description
The invite user email is empty.
Root Cause
- The
emailfield was left blank in the invite-user request.
Resolution
- Provide the email address of the user to invite.
NotBlank.inviteUserRequest.password
Message
使用をご希望されるパスワードを入力してください。
Description
The invite user password is empty.
Root Cause
- The
passwordfield was left blank in the invite-user request.
Resolution
- Enter the password for the invited user.
Size.inviteUserRequest.password
Message
パスワードは<size>文字以上である必要があります。
Description
The invite user password does not meet the minimum length requirement.
Root Cause
- The provided password is shorter than the required minimum length ({
size} characters).
Resolution
- Enter a password that meets the minimum length requirement.