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