Bunq · Schema

TaxResident

Banking

Properties

Name Type Description
country string The country of the tax number.
tax_number string The tax number.
status string The status of the tax number. Either CONFIRMED or UNCONFIRMED.
View JSON Schema on GitHub

JSON Schema

bunq-taxresident-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxResident",
  "title": "TaxResident",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "The country of the tax number.",
      "readOnly": false,
      "writeOnly": false
    },
    "tax_number": {
      "type": "string",
      "description": "The tax number.",
      "readOnly": false,
      "writeOnly": false
    },
    "status": {
      "type": "string",
      "description": "The status of the tax number. Either CONFIRMED or UNCONFIRMED.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}