Skip to main content

Multiple Country of Operation

The Multiple Country of Operation Answer is used to specify multiple countries where a business or entity operates.

Fields

FieldTypeRequiredDescription
fieldTypeIdstringYesMust be set to "MultipleCountryOfOperation" (from FieldTypeEnum)
countryOfOperationAnswerItemsarrayYesList of country of operation items

Country of Operation Item Fields

FieldTypeRequiredDescription
countryOfOperationIdstringYesCountry identifier code (usually ISO country code)

Example Usage

{
"fqName": "BusinessInfo_Operations_CountriesOfOperation",
"answer": {
"fieldTypeId": "MultipleCountryOfOperation",
"countryOfOperationAnswerItems": [
{
"countryOfOperationId": "AE"
},
{
"countryOfOperationId": "US"
},
{
"countryOfOperationId": "GB"
}
]
}
}

Notes

  • Each countryOfOperationId should 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.