localization.graphql 663 B

123456789101112131415161718
  1. # Represents the value captured by a localization extension. Localization extensions are additional fields required by certain countries on international orders.
  2. # For example, some countries require additional fields for customs information or tax identification numbers.
  3. type LocalizationExtension {
  4. # Country ISO 3166-1 alpha-2 code.
  5. countryCode: CountryCode!
  6. # The localized extension keys that are allowed.
  7. key: LocalizationExtensionKey!
  8. # The purpose of this localization extension.
  9. purpose: LocalizationExtensionPurpose!
  10. # The localized extension title.
  11. title: String!
  12. # The value of the field.
  13. value: String!
  14. }