rental_add_unit
Add a rental unit to a property by providing unit details including square footage, bedrooms, bathrooms, and market rent for property management.
Instructions
Add a rental unit to a property
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| amenities | No | ||
| bathrooms | Yes | ||
| bedrooms | Yes | ||
| marketRent | Yes | ||
| propertyId | Yes | ||
| squareFeet | Yes | ||
| unitId | Yes | ||
| unitNumber | Yes | ||
| unitType | No |
Input Schema (JSON Schema)
{
"properties": {
"amenities": {
"items": {
"type": "string"
},
"type": "array"
},
"bathrooms": {
"type": "number"
},
"bedrooms": {
"type": "number"
},
"marketRent": {
"type": "number"
},
"propertyId": {
"type": "string"
},
"squareFeet": {
"type": "number"
},
"unitId": {
"type": "string"
},
"unitNumber": {
"type": "string"
},
"unitType": {
"type": "string"
}
},
"required": [
"unitId",
"propertyId",
"unitNumber",
"squareFeet",
"bedrooms",
"bathrooms",
"marketRent"
],
"type": "object"
}