AddressDto
streetstring
Business official street address. Allowed characters: letters, digits, spaces and , . - / # ( ) : '
Possible values: >= 4 characters and <= 256 characters, Value must match regular expression ^[A-Za-z0-9\s,.\-/#():']+$
Example:
19 Victoria Avecitystring
City name of business official address. Allowed characters: letters, spaces and - . '
Possible values: <= 128 characters, Value must match regular expression ^[A-Za-z\s\-.']+$
Example:
Sydneystatestring
State name of business official address. Allowed characters: letters, spaces and -
Possible values: <= 128 characters, Value must match regular expression ^[A-Za-z\s\-]+$
Example:
New South Waleszipstring
Zip code of business official address. Allowed characters: letters, digits, hyphens and spaces
Possible values: <= 32 characters, Value must match regular expression ^[A-Za-z0-9\- ]+$
Example:
2000AddressDto
{
"street": "19 Victoria Ave",
"city": "Sydney",
"state": "New South Wales",
"zip": "2000"
}