loan_amortization
Calculate and generate detailed loan amortization schedules showing principal and interest breakdowns over the loan term for financial planning.
Instructions
Generate loan amortization schedule
Input Schema
Name | Required | Description | Default |
---|---|---|---|
annualRate | Yes | Annual interest rate as decimal | |
paymentFrequency | No | monthly | |
principal | Yes | ||
years | Yes |
Input Schema (JSON Schema)
{
"properties": {
"annualRate": {
"description": "Annual interest rate as decimal",
"type": "number"
},
"paymentFrequency": {
"default": "monthly",
"enum": [
"monthly",
"quarterly",
"semi-annually",
"annually"
],
"type": "string"
},
"principal": {
"type": "number"
},
"years": {
"type": "number"
}
},
"required": [
"principal",
"annualRate",
"years"
],
"type": "object"
}