validate_tax_number
Validate tax numbers for specific regions using region codes. This tool ensures accurate tax number verification, aiding compliance and financial accuracy for businesses.
Instructions
Validate a tax number for a specific region.
Args:
tax_number: Tax number to validate
region_code: Region code (e.g. "BE" for Belgium)
Returns:
Validation result for the tax number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region_code | Yes | ||
tax_number | Yes |
Input Schema (JSON Schema)
{
"properties": {
"region_code": {
"title": "Region Code",
"type": "string"
},
"tax_number": {
"title": "Tax Number",
"type": "string"
}
},
"required": [
"tax_number",
"region_code"
],
"title": "validate_tax_numberArguments",
"type": "object"
}