Multiple Country of Operation
The Multiple Country of Operation Answer is used to specify multiple countries where a business or entity operates.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
fieldTypeId | string | Yes | Must be set to "MultipleCountryOfOperation" (from FieldTypeEnum) |
countryOfOperationAnswerItems | array | Yes | List of country of operation items |
Country of Operation Item Fields
| Field | Type | Required | Description |
|---|---|---|---|
countryOfOperationId | string | Yes | Country identifier code (usually ISO country code) |
Example Usage
{
"fqName": "BusinessInfo_Operations_CountriesOfOperation",
"answer": {
"fieldTypeId": "MultipleCountryOfOperation",
"countryOfOperationAnswerItems": [
{
"countryOfOperationId": "AE"
},
{
"countryOfOperationId": "US"
},
{
"countryOfOperationId": "GB"
}
]
}
}
Notes
- Each
countryOfOperationIdshould be a valid country code recognized by the system (typically ISO 3166-1 alpha-2 codes). - This field is used when a business operates in more than one country.
- The order of countries in the list may be significant depending on the implementation.