get_form_details
Retrieve detailed information about French tax forms including required fields and filing instructions to complete tax declarations accurately.
Instructions
Get detailed information about a specific tax form including fields and instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
form_number | Yes | ||
year | No |
Input Schema (JSON Schema)
{
"properties": {
"form_number": {
"title": "Form Number",
"type": "string"
},
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year"
}
},
"required": [
"form_number"
],
"title": "get_form_details_wrapperArguments",
"type": "object"
}