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