estimated_quarterly_taxes
Calculate quarterly tax payments based on annual income, filing status, and self-employment status for accurate tax planning and compliance.
Instructions
Calculate estimated quarterly tax payments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
annualIncome | Yes | ||
filingStatus | No | single | |
selfEmployed | No |
Input Schema (JSON Schema)
{
"properties": {
"annualIncome": {
"type": "number"
},
"filingStatus": {
"default": "single",
"enum": [
"single",
"married_filing_jointly"
],
"type": "string"
},
"selfEmployed": {
"default": false,
"type": "boolean"
}
},
"required": [
"annualIncome"
],
"type": "object"
}