calculate_state_taxes
Calculate state income tax amounts for California, New York, Texas, and Florida based on taxable income and filing status.
Instructions
Calculate state income tax for supported states
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filingStatus | No | single | |
| state | Yes | State abbreviation | |
| taxableIncome | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filingStatus": {
"default": "single",
"enum": [
"single",
"married_filing_jointly"
],
"type": "string"
},
"state": {
"description": "State abbreviation",
"enum": [
"CA",
"NY",
"TX",
"FL"
],
"type": "string"
},
"taxableIncome": {
"type": "number"
}
},
"required": [
"state",
"taxableIncome"
],
"type": "object"
}