Propertyware · Schema

SaveContact

Contact for Request

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
address object
allowESignature boolean Indicate if the contact can receive eSignature request e-mail messages sent through Propertyware.
altEmail string Alternate Email Address.
birthDate string Date of Birth.
category string Indicate contact category. Send empty "" value if contact is Uncategorized. Applicable only for CREATE Contact.
comments string Description.
company string Company where the contact is employed.
email string E-mail Address.
fax string Fax.
firstName string First Name.
gender string Gender.
homePhone string Home Phone.
jobTitle string Professional title or position for the contact.
lastName string Last Name.
middleName string Middle Name.
mobilePhone string Mobile Phone.
nameOnCheck string Name On Check.
namedOnLease boolean Is Named On Lease.
otherPhone string Other Phone.
salutation string Salutation. Allowed values are : '', 'Mr.', 'Mrs.', 'Ms.', 'Dr.', 'Prof.'
searchTag string SearchTag.
suffix string Suffix. Allowed values are : '', 'Jr.', 'Sr.', 'I', 'II', 'III', 'IV'
workPhone string Work Phone.
View JSON Schema on GitHub

JSON Schema

save-contact.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveContact",
  "description": "Contact for Request",
  "type": "object",
  "required": [
    "firstName",
    "lastName"
  ],
  "properties": {
    "address": {
      "$ref": "#/components/schemas/SaveAddress"
    },
    "allowESignature": {
      "type": "boolean",
      "example": false,
      "description": "Indicate if the contact can receive eSignature request e-mail messages sent through Propertyware."
    },
    "altEmail": {
      "type": "string",
      "description": "Alternate Email Address."
    },
    "birthDate": {
      "type": "string",
      "format": "date",
      "description": "Date of Birth."
    },
    "category": {
      "type": "string",
      "description": "Indicate contact category. Send empty \"\" value if contact is Uncategorized. Applicable only for CREATE Contact."
    },
    "comments": {
      "type": "string",
      "description": "Description."
    },
    "company": {
      "type": "string",
      "description": "Company where the contact is employed.",
      "minLength": 1,
      "maxLength": 75
    },
    "email": {
      "type": "string",
      "description": "E-mail Address."
    },
    "fax": {
      "type": "string",
      "description": "Fax."
    },
    "firstName": {
      "type": "string",
      "description": "First Name.",
      "minLength": 1,
      "maxLength": 30
    },
    "gender": {
      "type": "string",
      "description": "Gender.",
      "enum": [
        "UNKNOWN",
        "MALE",
        "FEMALE",
        "DECLINE_TO_STATE"
      ]
    },
    "homePhone": {
      "type": "string",
      "description": "Home Phone.",
      "minLength": 1,
      "maxLength": 22
    },
    "jobTitle": {
      "type": "string",
      "description": "Professional title or position for the contact.",
      "minLength": 1,
      "maxLength": 75
    },
    "lastName": {
      "type": "string",
      "description": "Last Name.",
      "minLength": 1,
      "maxLength": 30
    },
    "middleName": {
      "type": "string",
      "description": "Middle Name.",
      "minLength": 1,
      "maxLength": 30
    },
    "mobilePhone": {
      "type": "string",
      "description": "Mobile Phone.",
      "minLength": 1,
      "maxLength": 22
    },
    "nameOnCheck": {
      "type": "string",
      "description": "Name On Check.",
      "minLength": 1,
      "maxLength": 100
    },
    "namedOnLease": {
      "type": "boolean",
      "example": false,
      "description": "Is Named On Lease."
    },
    "otherPhone": {
      "type": "string",
      "description": "Other Phone.",
      "minLength": 1,
      "maxLength": 22
    },
    "salutation": {
      "type": "string",
      "description": "Salutation. Allowed values are : '', 'Mr.', 'Mrs.', 'Ms.', 'Dr.', 'Prof.'"
    },
    "searchTag": {
      "type": "string",
      "description": "SearchTag."
    },
    "suffix": {
      "type": "string",
      "description": "Suffix. Allowed values are : '', 'Jr.', 'Sr.', 'I', 'II', 'III', 'IV'"
    },
    "workPhone": {
      "type": "string",
      "description": "Work Phone.",
      "minLength": 1,
      "maxLength": 22
    }
  }
}