rental_project_cash_flow
Project rental property cash flows with financing analysis to evaluate investment performance and loan impact over time.
Instructions
Project property cash flows with financing analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
initialInvestment | Yes | ||
loanAmount | No | ||
loanRate | No | ||
loanTermYears | No | ||
propertyId | Yes | ||
years | Yes |
Input Schema (JSON Schema)
{
"properties": {
"initialInvestment": {
"type": "number"
},
"loanAmount": {
"default": 0,
"type": "number"
},
"loanRate": {
"default": 0,
"type": "number"
},
"loanTermYears": {
"default": 0,
"type": "number"
},
"propertyId": {
"type": "string"
},
"years": {
"type": "number"
}
},
"required": [
"propertyId",
"years",
"initialInvestment"
],
"type": "object"
}