Propertyware · Schema

ProspectContact

Contact of the prospect

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
email string E-mail address.
firstName string First name.
homePhone string Home phone.
id integer Unique identifier.
lastName string Last name.
mobilePhone string Mobile phone.
role string Role.
workPhone string Work phone.
View JSON Schema on GitHub

JSON Schema

prospect-contact.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProspectContact",
  "description": "Contact of the prospect",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "E-mail 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."
    },
    "role": {
      "type": "string",
      "description": "Role."
    },
    "workPhone": {
      "type": "string",
      "description": "Work phone."
    }
  }
}