rental_calculate_noi
Calculate Net Operating Income for rental properties to assess investment performance and financial viability using property data and year parameters.
Instructions
Calculate Net Operating Income for a property
Input Schema
Name | Required | Description | Default |
---|---|---|---|
propertyId | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"propertyId": {
"type": "string"
},
"year": {
"type": "number"
}
},
"required": [
"propertyId",
"year"
],
"type": "object"
}