rental_add_tenant
Add new tenants to rental property management system by entering tenant ID, name, contact information, credit score, and employment details.
Instructions
Add a new tenant to the system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contactInfo | Yes | ||
creditScore | No | ||
employmentInfo | No | ||
name | Yes | ||
tenantId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"contactInfo": {
"type": "object"
},
"creditScore": {
"type": "number"
},
"employmentInfo": {
"type": "object"
},
"name": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"tenantId",
"name",
"contactInfo"
],
"type": "object"
}