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