rental_generate_rent_roll
Generate rent roll reports for rental properties to track income, occupancy, and tenant details for financial analysis and property management.
Instructions
Generate rent roll report for a property
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asOfDate | No | Date in YYYY-MM-DD format | |
propertyId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"asOfDate": {
"description": "Date in YYYY-MM-DD format",
"format": "date",
"type": "string"
},
"propertyId": {
"type": "string"
}
},
"required": [
"propertyId"
],
"type": "object"
}