You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
we may allow the option to enter with additional fields (to be considered)
may allow translated names -TBD
Part of epic Add/Register a Beneficial Owner #17846
Wireframes link see UI Design - Add new beneficial owner to company information #15925
Instructions
data source: entered free text in whatever language (for MVP)
full name as single string
allow spaces
normalize name (remove leading and trailing spaces, extra spaces)
max character length (TBD); currently 150; use same value as BCSC
UTF8
Allowable characters:
Case insensitive
Minimum number of characters is 1 (spaces only is not a valid name).
One character with one space on either side is allowed (with leading and trial spaces normalized).
Normalization
Remove leading spaces (before first character)
Remove trailing spaces (after last character)
Remove extra spaces within a string (only one sequential space allowed)
Display
Name must be displayed exactly as entered (no forced capitalization - Leonardo da Vinci)
Names are displayed/listed in the order entered – first entered at the top of the list
Scenario: Entering name with leading and trailing spaces
Given the user is on the name input form
When the user enters " John Doe " in the name field
Then the name field should display "John Doe"
Scenario: Entering name with extra spaces between names
Given the user is on the name input form
When the user enters "John Doe" in the name field
Then the name field should display "John Doe"
Scenario: Entering name with extended Unicode character set
Given the user is on the name input form
When the user enters "José 玛丽" in the name field
Then the name field should display "José 玛丽"
Scenario: Entering name exceeding max character length
Given the max character length for the name field is 150
And the user is on the name input form
When the user enters a name with 151 characters in the name field
Then the user should be notified that the name is too long
Scenario: Entering name with exactly max character length
Given the max character length for the name field is 150
And the user is on the name input form
When the user enters a name with exactly 150 characters in the name field
Then the name field should accept and display the name
The text was updated successfully, but these errors were encountered:
A single name field to hold the full legal name
we may allow the option to enter with additional fields (to be considered)
may allow translated names -TBD
Part of epic Add/Register a Beneficial Owner #17846
Wireframes link see UI Design - Add new beneficial owner to company information #15925
Instructions
Allowable characters:
Case insensitive
Minimum number of characters is 1 (spaces only is not a valid name).
One character with one space on either side is allowed (with leading and trial spaces normalized).
Normalization
Remove leading spaces (before first character)
Remove trailing spaces (after last character)
Remove extra spaces within a string (only one sequential space allowed)
Display
Name must be displayed exactly as entered (no forced capitalization - Leonardo da Vinci)
Names are displayed/listed in the order entered – first entered at the top of the list
Wireframes
https://www.figma.com/file/C2ThYIhZSO44dYBVGp8xAj/Register-Beneficial-Owners?node-id=0%3A1&t=JJO29RQMrOzdlRx7-1
Components, Validation, and Messaging Matrix
https://1drv.ms/x/s!AlejmOwhCCvlgcMDvsUyEofpuM1a9A?e=2Ll33p
Acceptance Criteria
Feature: Full Legal Name Form Component
Scenario: Entering name with leading and trailing spaces
Given the user is on the name input form
When the user enters " John Doe " in the name field
Then the name field should display "John Doe"
Scenario: Entering name with extra spaces between names
Given the user is on the name input form
When the user enters "John Doe" in the name field
Then the name field should display "John Doe"
Scenario: Entering name with extended Unicode character set
Given the user is on the name input form
When the user enters "José 玛丽" in the name field
Then the name field should display "José 玛丽"
Scenario: Entering name exceeding max character length
Given the max character length for the name field is 150
And the user is on the name input form
When the user enters a name with 151 characters in the name field
Then the user should be notified that the name is too long
Scenario: Entering name with exactly max character length
Given the max character length for the name field is 150
And the user is on the name input form
When the user enters a name with exactly 150 characters in the name field
Then the name field should accept and display the name
The text was updated successfully, but these errors were encountered: