calculate_depreciation_deduction
Calculate tax depreciation deductions for assets to determine eligible tax savings based on asset ID and tax year.
Instructions
Calculate tax depreciation deduction for an asset
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assetId | Yes | ||
taxYear | Yes |
Input Schema (JSON Schema)
{
"properties": {
"assetId": {
"type": "string"
},
"taxYear": {
"type": "number"
}
},
"required": [
"assetId",
"taxYear"
],
"type": "object"
}