Anrok · Schema

CustomerTaxId

The customer VAT registration number for a non-US country

Sales TaxVATTax ComplianceSaaSFintechTax AutomationNexusE-Invoicing

Properties

Name Type Description
type string This setting is purely metadata and does not affect tax calculation.
value string The customer VAT registration number for a non-US country
View JSON Schema on GitHub

JSON Schema

customer-tax-id.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/customer-tax-id.json",
  "title": "CustomerTaxId",
  "type": "object",
  "description": "The customer VAT registration number for a non-US country",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "genericVatNumber",
        "euVrn"
      ],
      "description": "This setting is purely metadata and does not affect tax calculation."
    },
    "value": {
      "description": "The customer VAT registration number for a non-US country",
      "type": "string"
    }
  },
  "required": [
    "type",
    "value"
  ]
}