rental_calculate_cap_rate
Calculate property capitalization rates to evaluate rental investment returns based on property value and annual net operating income.
Instructions
Calculate capitalization rate for a property
Input Schema
Name | Required | Description | Default |
---|---|---|---|
propertyId | Yes | ||
propertyValue | Yes | ||
year | Yes |
Input Schema (JSON Schema)
{
"properties": {
"propertyId": {
"type": "string"
},
"propertyValue": {
"type": "number"
},
"year": {
"type": "number"
}
},
"required": [
"propertyId",
"propertyValue",
"year"
],
"type": "object"
}