BusinessRegistrationInput
The registration number of a business in a particular country.
input BusinessRegistrationInput {
country: CountryCode!
number: String!
}
Fields
country
● CountryCode!
non-null scalar
The country where the business is registered.
number
● String!
non-null scalar
The registration number of the business. Depending on the region and when the business was registered, the format could be either a 10-digit number with a letter prefix (eg.
"K1234123456"
), or the number format with slashes (eg. YYYY/######/## or"2020/518288/03"
)