TaxID.constants.ts1009 lines · main
1export interface TaxId {
2 name: string
3 type: string
4 country: string
5 countryIso2: string
6 placeholder: string
7 vatPrefix?: string
8 /** Override the country code sent to Orb when it differs from countryIso2 */
9 taxCountryIso2?: string
10}
11
12// Commented out countries are not currently supported by Orb API
13
14export const TAX_IDS: TaxId[] = [
15 {
16 name: 'AL TIN',
17 type: 'al_tin',
18 country: 'Albania',
19 placeholder: 'J12345678N',
20 countryIso2: 'AL',
21 },
22 {
23 name: 'AE TRN',
24 type: 'ae_trn',
25 country: 'United Arab Emirates',
26 placeholder: '123456789012345',
27 countryIso2: 'AE',
28 },
29 {
30 name: 'AT VAT',
31 type: 'eu_vat',
32 country: 'Austria',
33 placeholder: 'ATU12345678',
34 vatPrefix: 'ATU',
35 countryIso2: 'AT',
36 },
37 {
38 name: 'AD NRT',
39 type: 'ad_nrt',
40 country: 'Andorra',
41 placeholder: 'A-123456-Z',
42 countryIso2: 'AD',
43 },
44 {
45 name: 'AO TIN',
46 type: 'ao_tin',
47 country: 'Angola',
48 placeholder: '5123456789',
49 countryIso2: 'AO',
50 },
51 {
52 name: 'AR CUIT',
53 type: 'ar_cuit',
54 country: 'Argentina',
55 placeholder: '12-3456789-01',
56 countryIso2: 'AR',
57 },
58 {
59 name: 'AM TIN',
60 type: 'am_tin',
61 country: 'Armenia',
62 placeholder: '02538904',
63 countryIso2: 'AM',
64 },
65 {
66 name: 'AW TIN',
67 type: 'aw_tin',
68 country: 'Aruba',
69 placeholder: '12345678',
70 countryIso2: 'AW',
71 },
72 {
73 name: 'AU ABN',
74 type: 'au_abn',
75 country: 'Australia',
76 placeholder: '12345678912',
77 countryIso2: 'AU',
78 },
79 {
80 name: 'AU ARN',
81 type: 'au_arn',
82 country: 'Australia',
83 placeholder: '123456789123',
84 countryIso2: 'AU',
85 },
86 {
87 name: 'AZ TIN',
88 type: 'az_tin',
89 country: 'Azerbaijan',
90 placeholder: '0123456789',
91 countryIso2: 'AZ',
92 },
93 {
94 name: 'BS TIN',
95 type: 'bs_tin',
96 country: 'Bahamas',
97 placeholder: '123.456.789',
98 countryIso2: 'BS',
99 },
100 {
101 name: 'BH VAT',
102 type: 'bh_vat',
103 country: 'Bahrain',
104 placeholder: '123456789012345',
105 countryIso2: 'BH',
106 },
107 {
108 name: 'BD BIN',
109 type: 'bd_bin',
110 country: 'Bangladesh',
111 placeholder: '123456789-0123',
112 countryIso2: 'BD',
113 },
114 {
115 name: 'BB TIN',
116 type: 'bb_tin',
117 country: 'Barbados',
118 placeholder: '1123456789012',
119 countryIso2: 'BB',
120 },
121 {
122 name: 'BE VAT',
123 type: 'eu_vat',
124 country: 'Belgium',
125 placeholder: 'BE0123456789',
126 vatPrefix: 'BE',
127 countryIso2: 'BE',
128 },
129 {
130 name: 'BJ IFU',
131 type: 'bj_ifu',
132 country: 'Benin',
133 placeholder: '1234567890123',
134 countryIso2: 'BJ',
135 },
136 {
137 name: 'BO TIN',
138 type: 'bo_tin',
139 country: 'Bolivia',
140 placeholder: '123456789',
141 countryIso2: 'BO',
142 },
143 {
144 name: 'BA TIN',
145 type: 'ba_tin',
146 country: 'Bosnia & Herzegovina',
147 placeholder: '123456789012',
148 countryIso2: 'BA',
149 },
150 {
151 name: 'BG VAT',
152 type: 'eu_vat',
153 country: 'Bulgaria',
154 placeholder: 'BG0123456789',
155 vatPrefix: 'BG',
156 countryIso2: 'BG',
157 },
158 {
159 name: 'BG UIC',
160 type: 'bg_uic',
161 country: 'Bulgaria',
162 placeholder: '123456789',
163 countryIso2: 'BG',
164 },
165 {
166 name: 'BR CNPJ',
167 type: 'br_cnpj',
168 country: 'Brazil',
169 placeholder: '01.234.456/5432-10',
170 countryIso2: 'BR',
171 },
172 {
173 name: 'BR CPF',
174 type: 'br_cpf',
175 country: 'Brazil',
176 placeholder: '123.456.789-87',
177 countryIso2: 'BR',
178 },
179 {
180 name: 'BF IFU',
181 type: 'bf_ifu',
182 country: 'Burkina Faso',
183 placeholder: '12345678A',
184 countryIso2: 'BF',
185 },
186 {
187 name: 'KH TIN',
188 type: 'kh_tin',
189 country: 'Cambodia',
190 placeholder: '1001-123456789',
191 countryIso2: 'KH',
192 },
193 {
194 name: 'CM NIU',
195 type: 'cm_niu',
196 country: 'Cameroon',
197 placeholder: 'M123456789000L',
198 countryIso2: 'CM',
199 },
200 {
201 name: 'CA BN',
202 type: 'ca_bn',
203 country: 'Canada',
204 placeholder: '123456789',
205 countryIso2: 'CA',
206 },
207 {
208 name: 'CA GST/HST',
209 type: 'ca_gst_hst',
210 country: 'Canada',
211 placeholder: '123456789RT0002',
212 countryIso2: 'CA',
213 },
214 {
215 name: 'CA PST-BC',
216 type: 'ca_pst_bc',
217 country: 'Canada',
218 placeholder: 'PST-1234-5678',
219 countryIso2: 'CA',
220 },
221 {
222 name: 'CA PST-MB',
223 type: 'ca_pst_mb',
224 country: 'Canada',
225 placeholder: '123456-7',
226 countryIso2: 'CA',
227 },
228 {
229 name: 'CA PST-SK',
230 type: 'ca_pst_sk',
231 country: 'Canada',
232 placeholder: '1234567',
233 countryIso2: 'CA',
234 },
235 {
236 name: 'CA QST',
237 type: 'ca_qst',
238 country: 'Canada',
239 placeholder: '1234567890TQ1234',
240 countryIso2: 'CA',
241 },
242 {
243 name: 'CV NIF',
244 type: 'cv_nif',
245 country: 'Cape Verde',
246 placeholder: '213456789',
247 countryIso2: 'CV',
248 },
249 {
250 name: 'CH VAT',
251 type: 'ch_vat',
252 country: 'Switzerland',
253 placeholder: 'CHE-123.456.789 MWST',
254 vatPrefix: 'CHE',
255 countryIso2: 'CH',
256 },
257 {
258 name: 'CH UID',
259 type: 'ch_uid',
260 country: 'Switzerland',
261 placeholder: 'CHE-123.456.789 HR ',
262 countryIso2: 'CH',
263 },
264 {
265 name: 'CL TIN',
266 type: 'cl_tin',
267 country: 'Chile',
268 placeholder: '12.345.678-K',
269 countryIso2: 'CL',
270 },
271 {
272 name: 'CN TIN',
273 type: 'cn_tin',
274 country: 'China',
275 placeholder: '123456789012345678',
276 countryIso2: 'CN',
277 },
278 {
279 name: 'CO NIT',
280 type: 'co_nit',
281 country: 'Colombia',
282 placeholder: '123.456.789-0',
283 countryIso2: 'CO',
284 },
285 {
286 name: 'CD NIF',
287 type: 'cd_nif',
288 country: 'Congo (DRC)',
289 placeholder: 'A0123456M',
290 countryIso2: 'CD',
291 },
292 {
293 name: 'CR TIN',
294 type: 'cr_tin',
295 country: 'Costa Rica',
296 placeholder: '1-234-567890',
297 countryIso2: 'CR',
298 },
299 {
300 name: 'CY VAT',
301 type: 'eu_vat',
302 country: 'Cyprus',
303 placeholder: 'CY12345678Z',
304 vatPrefix: 'CY',
305 countryIso2: 'CY',
306 },
307 {
308 name: 'CZ VAT',
309 type: 'eu_vat',
310 country: 'Czech Republic',
311 placeholder: 'CZ1234567890',
312 vatPrefix: 'CZ',
313 countryIso2: 'CZ',
314 },
315 {
316 name: 'DE VAT',
317 type: 'eu_vat',
318 country: 'Germany',
319 placeholder: 'DE123456789',
320 vatPrefix: 'DE',
321 countryIso2: 'DE',
322 },
323 {
324 name: 'DE STN',
325 type: 'de_stn',
326 country: 'Germany',
327 placeholder: '1234567890',
328 countryIso2: 'DE',
329 },
330 {
331 name: 'DK VAT',
332 type: 'eu_vat',
333 country: 'Denmark',
334 placeholder: 'DK12345678',
335 vatPrefix: 'DK',
336 countryIso2: 'DK',
337 },
338 {
339 name: 'DO RCN',
340 type: 'do_rcn',
341 country: 'Dominican Republic',
342 placeholder: '123-4567890-1',
343 countryIso2: 'DO',
344 },
345 {
346 name: 'EC RUC',
347 type: 'ec_ruc',
348 country: 'Ecuador',
349 placeholder: '1234567890001',
350 countryIso2: 'EC',
351 },
352 {
353 name: 'EG TIN',
354 type: 'eg_tin',
355 country: 'Egypt',
356 placeholder: '1234567890',
357 countryIso2: 'EG',
358 },
359 {
360 name: 'SV NIT',
361 type: 'sv_nit',
362 country: 'El Salvador',
363 placeholder: '1234-567890-123-4',
364 countryIso2: 'SV',
365 },
366 {
367 name: 'ET TIN',
368 type: 'et_tin',
369 country: 'Ethiopia',
370 placeholder: '1234567890',
371 countryIso2: 'ET',
372 },
373 {
374 name: 'EE VAT',
375 type: 'eu_vat',
376 country: 'Estonia',
377 placeholder: 'EE123456789',
378 vatPrefix: 'EE',
379 countryIso2: 'EE',
380 },
381 {
382 name: 'ES CIF',
383 type: 'es_cif',
384 country: 'Spain',
385 placeholder: 'A12345678',
386 countryIso2: 'ES',
387 },
388 {
389 name: 'ES VAT',
390 type: 'eu_vat',
391 country: 'Spain',
392 placeholder: 'ESX1234567Z',
393 vatPrefix: 'ES',
394 countryIso2: 'ES',
395 },
396 {
397 name: 'SR FIN',
398 type: 'sr_fin',
399 country: 'Suriname',
400 placeholder: '1234567890',
401 countryIso2: 'SR',
402 },
403 {
404 name: 'FI VAT',
405 type: 'eu_vat',
406 country: 'Finland',
407 placeholder: 'FI12345678',
408 vatPrefix: 'FI',
409 countryIso2: 'FI',
410 },
411 {
412 name: 'FR VAT',
413 type: 'eu_vat',
414 country: 'France',
415 placeholder: 'FRAB123456789',
416 vatPrefix: 'FR',
417 countryIso2: 'FR',
418 },
419 {
420 name: 'GB VAT',
421 type: 'eu_vat',
422 country: 'United Kingdom',
423 placeholder: 'GB123456789',
424 vatPrefix: 'GB',
425 countryIso2: 'GB',
426 },
427 {
428 name: 'UK VAT',
429 type: 'gb_vat',
430 country: 'United Kingdom',
431 placeholder: 'GB123456789',
432 vatPrefix: 'GB',
433 countryIso2: 'GB',
434 },
435 {
436 // Isle of Man uses GB VAT numbers, taxCountryIso2 must be GB for Orb validation
437 name: 'IM VAT',
438 type: 'gb_vat',
439 country: 'Isle of Man',
440 placeholder: 'GB123456789',
441 vatPrefix: 'GB',
442 countryIso2: 'IM',
443 taxCountryIso2: 'GB',
444 },
445 {
446 name: 'GE VAT',
447 type: 'ge_vat',
448 country: 'Georgia',
449 placeholder: '123456789',
450 countryIso2: 'GE',
451 },
452 {
453 name: 'EL VAT',
454 type: 'eu_vat',
455 country: 'Greece',
456 countryIso2: 'GR',
457 placeholder: 'EL123456789',
458 vatPrefix: 'EL',
459 },
460 {
461 name: 'GN NIF',
462 type: 'gn_nif',
463 country: 'Guinea',
464 placeholder: '123456789',
465 countryIso2: 'GN',
466 },
467 {
468 name: 'HK BR',
469 type: 'hk_br',
470 country: 'Hong Kong SAR China',
471 placeholder: '12345678',
472 countryIso2: 'HK',
473 },
474 {
475 name: 'HR VAT',
476 type: 'eu_vat',
477 country: 'Croatia',
478 placeholder: 'HR12345678912',
479 vatPrefix: 'HR',
480 countryIso2: 'HR',
481 },
482 {
483 name: 'HR OIB',
484 type: 'hr_oib',
485 country: 'Croatia',
486 placeholder: '12345678901',
487 countryIso2: 'HR',
488 },
489 {
490 name: 'HU VAT',
491 type: 'eu_vat',
492 country: 'Hungary',
493 placeholder: 'HU12345678912',
494 vatPrefix: 'HU',
495 countryIso2: 'HU',
496 },
497 {
498 name: 'HU TIN',
499 type: 'hu_tin',
500 country: 'Hungary',
501 placeholder: '12345678-1-23',
502 countryIso2: 'HU',
503 },
504 {
505 name: 'ID NPWP',
506 type: 'id_npwp',
507 country: 'Indonesia',
508 placeholder: '012.345.678.9-012.345',
509 countryIso2: 'ID',
510 },
511 {
512 name: 'IE VAT',
513 type: 'eu_vat',
514 country: 'Ireland',
515 placeholder: 'IE1234567AB',
516 vatPrefix: 'IE',
517 countryIso2: 'IE',
518 },
519 {
520 name: 'IL VAT',
521 type: 'il_vat',
522 country: 'Israel',
523 placeholder: '000012345',
524 countryIso2: 'IL',
525 },
526 {
527 name: 'IN GST',
528 type: 'in_gst',
529 country: 'India',
530 placeholder: '12ABCDE3456FGZH',
531 countryIso2: 'IN',
532 },
533 {
534 name: 'IS VAT',
535 type: 'is_vat',
536 country: 'Iceland',
537 placeholder: '123456',
538 countryIso2: 'IS',
539 },
540 {
541 name: 'IT VAT',
542 type: 'eu_vat',
543 country: 'Italy',
544 placeholder: 'IT12345678912',
545 vatPrefix: 'IT',
546 countryIso2: 'IT',
547 },
548 {
549 name: 'KE PIN',
550 type: 'ke_pin',
551 country: 'Kenya',
552 placeholder: 'P000111111A',
553 countryIso2: 'KE',
554 },
555 {
556 name: 'KZ BIN',
557 type: 'kz_bin',
558 country: 'Kazakhstan',
559 placeholder: '123456789012',
560 countryIso2: 'KZ',
561 },
562 {
563 name: 'KG TIN',
564 type: 'kg_tin',
565 country: 'Kyrgyzstan',
566 placeholder: '12345678901234',
567 countryIso2: 'KG',
568 },
569 {
570 name: 'JP CN',
571 type: 'jp_cn',
572 country: 'Japan',
573 placeholder: '1234567891234',
574 countryIso2: 'JP',
575 },
576 {
577 name: 'JP RN',
578 type: 'jp_rn',
579 country: 'Japan',
580 placeholder: '12345',
581 countryIso2: 'JP',
582 },
583 {
584 name: 'JP TRN',
585 type: 'jp_trn',
586 country: 'Japan',
587 placeholder: 'T1234567891234',
588 countryIso2: 'JP',
589 },
590 {
591 name: 'KR BRN',
592 type: 'kr_brn',
593 country: 'Korea',
594 placeholder: '123-45-67890',
595 countryIso2: 'KR',
596 },
597 {
598 name: 'LI UID',
599 type: 'li_uid',
600 country: 'Liechtenstein',
601 placeholder: 'CHE123456789',
602 countryIso2: 'LI',
603 },
604 {
605 name: 'LI VAT',
606 type: 'li_vat',
607 country: 'Liechtenstein',
608 placeholder: '12345',
609 vatPrefix: 'LI',
610 countryIso2: 'LI',
611 },
612 {
613 name: 'LT VAT',
614 type: 'eu_vat',
615 country: 'Lithuania',
616 placeholder: 'LT123456789123',
617 vatPrefix: 'LT',
618 countryIso2: 'LT',
619 },
620 {
621 name: 'LU VAT',
622 type: 'eu_vat',
623 country: 'Luxembourg',
624 placeholder: 'LU12345678',
625 vatPrefix: 'LU',
626 countryIso2: 'LU',
627 },
628 {
629 name: 'LA TIN',
630 type: 'la_tin',
631 country: 'Laos',
632 placeholder: '123456789-000',
633 countryIso2: 'LA',
634 },
635 {
636 name: 'LV VAT',
637 type: 'eu_vat',
638 country: 'Latvia',
639 placeholder: 'LV12345678912',
640 vatPrefix: 'LV',
641 countryIso2: 'LV',
642 },
643 {
644 name: 'MT VAT',
645 type: 'eu_vat',
646 country: 'Malta',
647 placeholder: 'MT12345678',
648 vatPrefix: 'MT',
649 countryIso2: 'MT',
650 },
651 {
652 name: 'MR NIF',
653 type: 'mr_nif',
654 country: 'Mauritania',
655 placeholder: '12345678',
656 countryIso2: 'MR',
657 },
658 {
659 name: 'MX RFC',
660 type: 'mx_rfc',
661 country: 'Mexico',
662 placeholder: 'ABC010203AB9',
663 countryIso2: 'MX',
664 },
665 {
666 name: 'MD VAT',
667 type: 'md_vat',
668 country: 'Moldova',
669 placeholder: '1234567',
670 countryIso2: 'MD',
671 },
672 {
673 name: 'ME PIB',
674 type: 'me_pib',
675 country: 'Montenegro',
676 placeholder: '12345678',
677 countryIso2: 'ME',
678 },
679 {
680 name: 'MA VAT',
681 type: 'ma_vat',
682 country: 'Morocco',
683 placeholder: '12345678',
684 countryIso2: 'MA',
685 },
686 {
687 name: 'MY FRP',
688 type: 'my_frp',
689 country: 'Malaysia',
690 placeholder: '12345678',
691 countryIso2: 'MY',
692 },
693 {
694 name: 'MY ITN',
695 type: 'my_itn',
696 country: 'Malaysia',
697 placeholder: 'C 1234567890',
698 countryIso2: 'MY',
699 },
700 {
701 name: 'MY SST',
702 type: 'my_sst',
703 country: 'Malaysia',
704 placeholder: 'A12-3456-78912345',
705 countryIso2: 'MY',
706 },
707 {
708 name: 'NP PAN',
709 type: 'np_pan',
710 country: 'Nepal',
711 placeholder: '123456789',
712 countryIso2: 'NP',
713 },
714 {
715 name: 'NL VAT',
716 type: 'eu_vat',
717 country: 'Netherlands',
718 placeholder: 'NL123456789B12',
719 vatPrefix: 'NL',
720 countryIso2: 'NL',
721 },
722 {
723 name: 'NG TIN',
724 type: 'ng_tin',
725 country: 'Nigeria',
726 placeholder: '12345678-0001',
727 countryIso2: 'NG',
728 },
729 {
730 name: 'MK VAT',
731 type: 'mk_vat',
732 country: 'North Macedonia',
733 placeholder: 'MK1234567890123',
734 countryIso2: 'MK',
735 },
736 {
737 name: 'NO VAT',
738 type: 'no_vat',
739 country: 'Norway',
740 placeholder: '123456789MVA',
741 countryIso2: 'NO',
742 },
743 {
744 name: 'NO VOEC',
745 type: 'no_voec',
746 country: 'Norway',
747 placeholder: '1234567 ',
748 countryIso2: 'NO',
749 },
750 {
751 name: 'OM VAT',
752 type: 'om_vat',
753 country: 'Oman',
754 placeholder: 'OM1234567890',
755 countryIso2: 'OM',
756 },
757 {
758 name: 'PE RUC',
759 type: 'pe_ruc',
760 country: 'Peru',
761 placeholder: '12345678901',
762 countryIso2: 'PE',
763 },
764 {
765 name: 'PH TIN',
766 type: 'ph_tin',
767 country: 'Philippines',
768 placeholder: '123456789012',
769 countryIso2: 'PH',
770 },
771 {
772 name: 'NZ GST',
773 type: 'nz_gst',
774 country: 'New Zealand',
775 placeholder: '123456789',
776 countryIso2: 'NZ',
777 },
778 {
779 name: 'PL VAT',
780 type: 'eu_vat',
781 country: 'Poland',
782 placeholder: 'PL1234567890',
783 vatPrefix: 'PL',
784 countryIso2: 'PL',
785 },
786 {
787 name: 'PT VAT',
788 type: 'eu_vat',
789 country: 'Portugal',
790 placeholder: 'PT123456789',
791 vatPrefix: 'PT',
792 countryIso2: 'PT',
793 },
794 {
795 name: 'RO VAT',
796 type: 'eu_vat',
797 country: 'Romania',
798 placeholder: 'RO1234567891',
799 vatPrefix: 'RO',
800 countryIso2: 'RO',
801 },
802 {
803 name: 'RO TIN',
804 type: 'ro_tin',
805 country: 'Romania',
806 placeholder: '1234567890123',
807 countryIso2: 'RO',
808 },
809 {
810 name: 'RU INN',
811 type: 'ru_inn',
812 country: 'Russia',
813 placeholder: '1234567891',
814 countryIso2: 'RU',
815 },
816 {
817 name: 'RU KPP',
818 type: 'ru_kpp',
819 country: 'Russia',
820 placeholder: '123456789',
821 countryIso2: 'RU',
822 },
823 {
824 name: 'SA VAT',
825 type: 'sa_vat',
826 country: 'Saudi Arabia',
827 placeholder: '123456789012345',
828 countryIso2: 'SA',
829 },
830 {
831 name: 'SN NINEA',
832 type: 'sn_ninea',
833 country: 'Senegal',
834 placeholder: '12345672A2',
835 countryIso2: 'SN',
836 },
837 {
838 name: 'RS PIB',
839 type: 'rs_pib',
840 country: 'Serbia',
841 placeholder: '123456789',
842 countryIso2: 'RS',
843 },
844 {
845 name: 'SE VAT',
846 type: 'eu_vat',
847 country: 'Sweden',
848 placeholder: 'SE123456789123',
849 vatPrefix: 'SE',
850 countryIso2: 'SE',
851 },
852 {
853 name: 'SG GST',
854 type: 'sg_gst',
855 country: 'Singapore',
856 placeholder: 'M12345678X',
857 countryIso2: 'SG',
858 },
859 {
860 name: 'SG UEN',
861 type: 'sg_uen',
862 country: 'Singapore',
863 placeholder: '123456789F',
864 countryIso2: 'SG',
865 },
866 {
867 name: 'SI VAT',
868 type: 'eu_vat',
869 country: 'Slovenia',
870 placeholder: 'SI12345678',
871 vatPrefix: 'SI',
872 countryIso2: 'SI',
873 },
874 {
875 name: 'SI TIN',
876 type: 'si_tin',
877 country: 'Slovenia',
878 placeholder: '12345678',
879 countryIso2: 'SI',
880 },
881 {
882 name: 'SK VAT',
883 type: 'eu_vat',
884 country: 'Slovakia',
885 placeholder: 'SK1234567891',
886 vatPrefix: 'SK',
887 countryIso2: 'SK',
888 },
889 {
890 name: 'TH VAT',
891 type: 'th_vat',
892 country: 'Thailand',
893 placeholder: '1234567891234',
894 countryIso2: 'TH',
895 },
896 {
897 name: 'TR TIN',
898 type: 'tr_tin',
899 country: 'Turkey',
900 placeholder: '0123456789',
901 countryIso2: 'TR',
902 },
903 {
904 name: 'TW VAT',
905 type: 'tw_vat',
906 country: 'Taiwan',
907 placeholder: '12345678',
908 countryIso2: 'TW',
909 },
910 {
911 name: 'TJ TIN',
912 type: 'tj_tin',
913 country: 'Tajikistan',
914 placeholder: '123456789',
915 countryIso2: 'TJ',
916 },
917 {
918 name: 'TZ VAT',
919 type: 'tz_vat',
920 country: 'Tanzania',
921 placeholder: '12345678A',
922 countryIso2: 'TZ',
923 },
924 {
925 name: 'UG TIN',
926 type: 'ug_tin',
927 country: 'Uganda',
928 placeholder: '0123456789',
929 countryIso2: 'UG',
930 },
931 {
932 name: 'UA VAT',
933 type: 'ua_vat',
934 country: 'Ukraine',
935 placeholder: '123456789',
936 countryIso2: 'UA',
937 },
938 {
939 name: 'US EIN',
940 type: 'us_ein',
941 country: 'United States',
942 placeholder: '12-3456789',
943 countryIso2: 'US',
944 },
945 {
946 name: 'XI VAT',
947 type: 'eu_vat',
948 country: 'United Kingdom (Northern Ireland)',
949 placeholder: 'XI123456789',
950 vatPrefix: 'XI',
951 countryIso2: 'GB',
952 },
953 {
954 name: 'ZA VAT',
955 type: 'za_vat',
956 country: 'South Africa',
957 placeholder: '4123456789',
958 countryIso2: 'ZA',
959 },
960 {
961 name: 'UY RUC',
962 type: 'uy_ruc',
963 country: 'Uruguay',
964 placeholder: '123456789012',
965 countryIso2: 'UY',
966 },
967 {
968 name: 'UZ TIN',
969 type: 'uz_tin',
970 country: 'Uzbekistan',
971 placeholder: '123456789',
972 countryIso2: 'UZ',
973 },
974 {
975 name: 'UZ VAT',
976 type: 'uz_vat',
977 country: 'Uzbekistan',
978 placeholder: '123456789012',
979 countryIso2: 'UZ',
980 },
981 {
982 name: 'VE RIF',
983 type: 've_rif',
984 country: 'Venezuela',
985 placeholder: 'A-12345678-9',
986 countryIso2: 'VE',
987 },
988 {
989 name: 'VN TIN',
990 type: 'vn_tin',
991 country: 'Vietnam',
992 placeholder: '1234567890',
993 countryIso2: 'VN',
994 },
995 {
996 name: 'ZM TIN',
997 type: 'zm_tin',
998 country: 'Zambia',
999 placeholder: '1004751879',
1000 countryIso2: 'ZM',
1001 },
1002 {
1003 name: 'ZW TIN',
1004 type: 'zw_tin',
1005 country: 'Zimbabwe',
1006 placeholder: '1234567890',
1007 countryIso2: 'ZW',
1008 },
1009]