tax_planning_strategies
Analyze income and entity type to generate personalized tax planning strategies for optimizing financial outcomes.
Instructions
Get tax planning strategy recommendations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currentIncome | Yes | ||
entityType | Yes | ||
projectedIncome | Yes |
Input Schema (JSON Schema)
{
"properties": {
"currentIncome": {
"type": "number"
},
"entityType": {
"enum": [
"Sole Proprietorship",
"Partnership",
"S Corporation",
"C Corporation",
"LLC"
],
"type": "string"
},
"projectedIncome": {
"type": "number"
}
},
"required": [
"currentIncome",
"projectedIncome",
"entityType"
],
"type": "object"
}