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. |
JSON Schema
{
"$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
}
}
}