Bunq · Schema

CompanyVatNumber

Banking

Properties

Name Type Description
type string The VAT identification number type.
country string The country of the VAT identification number.
value string The VAT identification number number.
View JSON Schema on GitHub

JSON Schema

bunq-companyvatnumber-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyVatNumber",
  "title": "CompanyVatNumber",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The VAT identification number type.",
      "readOnly": false,
      "writeOnly": false
    },
    "country": {
      "type": "string",
      "description": "The country of the VAT identification number.",
      "readOnly": false,
      "writeOnly": false
    },
    "value": {
      "type": "string",
      "description": "The VAT identification number number.",
      "readOnly": false,
      "writeOnly": false
    }
  }
}