get_tax_brackets
Retrieve French income tax brackets for a specific year to calculate individual tax obligations based on official government data.
Instructions
Get income tax brackets (tranches d'imposition) for a specific year
Input Schema
Name | Required | Description | Default |
---|---|---|---|
year | No |
Input Schema (JSON Schema)
{
"properties": {
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year"
}
},
"title": "get_tax_brackets_wrapperArguments",
"type": "object"
}