business_deductions_analysis
Analyze business expenses to determine allowable tax deductions based on entity type, helping identify eligible write-offs for accurate tax filing.
Instructions
Analyze allowable business deductions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityType | Yes | ||
expenses | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entityType": {
"enum": [
"Sole Proprietorship",
"Partnership",
"S Corporation",
"C Corporation",
"LLC"
],
"type": "string"
},
"expenses": {
"items": {
"properties": {
"amount": {
"type": "number"
},
"category": {
"type": "string"
},
"description": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"expenses",
"entityType"
],
"type": "object"
}