Propertyware · Schema
Owner
Owner Contact
Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports
Properties
| Name | Type | Description |
|---|---|---|
| address | object | |
| string | Email address. | |
| firstName | string | First name. |
| homePhone | string | Home phone. |
| id | integer | Unique identifier. |
| lastName | string | Last name. |
| mobilePhone | string | Mobile phone. |
| name | string | Full name. |
| otherPhone | string | Other phone. |
| percentageOwnership | number | Percentage ownership. |
| workPhone | string | Work phone. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Owner",
"description": "Owner Contact",
"type": "object",
"properties": {
"address": {
"$ref": "#/components/schemas/Address"
},
"email": {
"type": "string",
"description": "Email address."
},
"firstName": {
"type": "string",
"description": "First name."
},
"homePhone": {
"type": "string",
"description": "Home phone."
},
"id": {
"type": "integer",
"format": "int64",
"description": "Unique identifier."
},
"lastName": {
"type": "string",
"description": "Last name."
},
"mobilePhone": {
"type": "string",
"description": "Mobile phone."
},
"name": {
"type": "string",
"description": "Full name."
},
"otherPhone": {
"type": "string",
"description": "Other phone."
},
"percentageOwnership": {
"type": "number",
"format": "double",
"description": "Percentage ownership."
},
"workPhone": {
"type": "string",
"description": "Work phone."
}
}
}