TaxID.constants.ts 18 KB

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