rental_add_lease
Add new rental lease agreements to Excel with lease details, tenant information, rent amounts, and security deposits for property management.
Instructions
Add a new lease agreement
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | Yes | ||
| escalationFrequency | No | annually | |
| escalationRate | No | ||
| leaseId | Yes | ||
| monthlyRent | Yes | ||
| securityDeposit | Yes | ||
| startDate | Yes | ||
| tenantId | Yes | ||
| unitId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"format": "date",
"type": "string"
},
"escalationFrequency": {
"default": "annually",
"type": "string"
},
"escalationRate": {
"default": 0,
"type": "number"
},
"leaseId": {
"type": "string"
},
"monthlyRent": {
"type": "number"
},
"securityDeposit": {
"type": "number"
},
"startDate": {
"format": "date",
"type": "string"
},
"tenantId": {
"type": "string"
},
"unitId": {
"type": "string"
}
},
"required": [
"leaseId",
"unitId",
"tenantId",
"startDate",
"endDate",
"monthlyRent",
"securityDeposit"
],
"type": "object"
}