Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

tax-ids.md

File metadata and controls

29 lines (20 loc) · 1.24 KB

Tax Ids

Identifiers for the location used by various governments for tax purposes.

Structure

TaxIds

Fields

Name Type Tags Description
euVat string | undefined Optional The EU VAT number for this location. For example, IE3426675K.
If the EU VAT number is present, it is well-formed and has been
validated with VIES, the VAT Information Exchange System.
frSiret string | undefined Optional The SIRET (Système d'Identification du Répertoire des Entreprises et de leurs Etablissements)
number is a 14-digit code issued by the French INSEE. For example, 39922799000021.
frNaf string | undefined Optional The French government uses the NAF (Nomenclature des Activités Françaises) to display and
track economic statistical data. This is also called the APE (Activite Principale de l’Entreprise) code.
For example, 6910Z.
esNif string | undefined Optional The NIF (Numero de Identificacion Fiscal) number is a nine-character tax identifier used in Spain.
If it is present, it has been validated. For example, 73628495A.

Example (as JSON)

{
  "eu_vat": null,
  "fr_siret": null,
  "fr_naf": null,
  "es_nif": null
}