create_rental_property_analysis
Generate Excel templates for rental property investment analysis, calculating cash flow, expenses, and cap rates to evaluate property profitability.
Instructions
Create rental property analysis Excel template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | ||
propertyData | Yes |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"type": "string"
},
"propertyData": {
"properties": {
"address": {
"type": "string"
},
"capRate": {
"type": "number"
},
"effectiveRentalIncome": {
"type": "number"
},
"grossRentalIncome": {
"type": "number"
},
"insurance": {
"type": "number"
},
"maintenance": {
"type": "number"
},
"name": {
"type": "string"
},
"otherIncome": {
"type": "number"
},
"propertyManagement": {
"type": "number"
},
"propertyTaxes": {
"type": "number"
},
"utilities": {
"type": "number"
},
"vacancyLoss": {
"type": "number"
}
},
"type": "object"
}
},
"required": [
"propertyData",
"filePath"
],
"type": "object"
}