rental_rent_comparables_analysis
Analyze comparable rental properties to determine market rent rates for investment analysis and property valuation.
Instructions
Analyze comparable rents for market analysis
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comparableProperties | Yes | List of comparable property IDs | |
unitId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"comparableProperties": {
"description": "List of comparable property IDs",
"items": {
"type": "string"
},
"type": "array"
},
"unitId": {
"type": "string"
}
},
"required": [
"unitId",
"comparableProperties"
],
"type": "object"
}