Propertyware · Schema

SaveProspect

Save Prospect

Property ManagementReal EstateRental PropertiesSingle-Family RentalsLeasesTenantsMaintenanceWork OrdersFinancial TransactionsOwner Reports

Properties

Name Type Description
buildingID integer Unique identifier of the building associated with the prospect.
comments string This is a description of the Prospect.
contacts array Prospect contacts.
currentHomeType string Prospect Current Home Type.
currentRentMortgage number Prospect Current Home Mortgage.
hasPets boolean Prospect Has Pets.
moveInDate string Prospect Move In Date.
neighborhoodDesired string Prospect Neighborhood Desired.
numberBathrooms number Prospect Number Of Bathrooms.
numberBedrooms integer Prospect Number Of Bedrooms.
numberOfPets integer Prospect Number Of Pets.
petType string Prospect Pet Type.
petWeights string Prospect Pet Weights.
preferredContactMethod string Prospect Preferred Contact Method.
propertyAddress string Property Address.
propertyAddress2 string Property Address Continued.
propertyCity string Property City.
propertyCountry string Property Country.
propertyNumberBathrooms number Property Number Of Bath rooms.
propertyNumberBedrooms integer Property Number Of Bedrooms.
propertyState string Property State.
propertyZip string Property Zip.
reasonForMoving string Prospect Reason For Moving.
rentMax number Prospect Rent Maximum.
rentMin number Prospect Rent Minimum.
source string Prospect Source.
status string Prospect Status.
timeAtCurrentResidence string Prospect Time At Current Residence.
type string Prospect Type.
typeOfInquiry string Prospect Type Of Inquiry.
View JSON Schema on GitHub

JSON Schema

save-prospect.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SaveProspect",
  "description": "Save Prospect ",
  "type": "object",
  "properties": {
    "buildingID": {
      "type": "integer",
      "format": "int64",
      "description": "Unique identifier of the building associated with the prospect."
    },
    "comments": {
      "type": "string",
      "description": "This is a description of the Prospect."
    },
    "contacts": {
      "type": "array",
      "description": "Prospect contacts.",
      "items": {
        "$ref": "#/components/schemas/SaveProspectContact"
      }
    },
    "currentHomeType": {
      "type": "string",
      "description": "Prospect Current Home Type."
    },
    "currentRentMortgage": {
      "type": "number",
      "format": "double",
      "description": "Prospect Current Home Mortgage."
    },
    "hasPets": {
      "type": "boolean",
      "example": false,
      "description": "Prospect Has Pets."
    },
    "moveInDate": {
      "type": "string",
      "format": "date",
      "description": "Prospect Move In Date."
    },
    "neighborhoodDesired": {
      "type": "string",
      "description": "Prospect Neighborhood Desired."
    },
    "numberBathrooms": {
      "type": "number",
      "format": "double",
      "description": "Prospect Number Of Bathrooms."
    },
    "numberBedrooms": {
      "type": "integer",
      "format": "int32",
      "description": "Prospect Number Of Bedrooms."
    },
    "numberOfPets": {
      "type": "integer",
      "format": "int32",
      "description": "Prospect Number Of Pets."
    },
    "petType": {
      "type": "string",
      "description": "Prospect Pet Type."
    },
    "petWeights": {
      "type": "string",
      "description": "Prospect Pet Weights."
    },
    "preferredContactMethod": {
      "type": "string",
      "description": "Prospect Preferred Contact Method."
    },
    "propertyAddress": {
      "type": "string",
      "description": "Property Address."
    },
    "propertyAddress2": {
      "type": "string",
      "description": "Property Address Continued."
    },
    "propertyCity": {
      "type": "string",
      "description": "Property City."
    },
    "propertyCountry": {
      "type": "string",
      "description": "Property Country."
    },
    "propertyNumberBathrooms": {
      "type": "number",
      "format": "double",
      "description": "Property Number Of Bath rooms."
    },
    "propertyNumberBedrooms": {
      "type": "integer",
      "format": "int32",
      "description": "Property Number Of Bedrooms."
    },
    "propertyState": {
      "type": "string",
      "description": "Property State."
    },
    "propertyZip": {
      "type": "string",
      "description": "Property Zip."
    },
    "reasonForMoving": {
      "type": "string",
      "description": "Prospect Reason For Moving."
    },
    "rentMax": {
      "type": "number",
      "format": "double",
      "description": "Prospect Rent Maximum."
    },
    "rentMin": {
      "type": "number",
      "format": "double",
      "description": "Prospect Rent Minimum."
    },
    "source": {
      "type": "string",
      "description": "Prospect Source."
    },
    "status": {
      "type": "string",
      "description": "Prospect Status."
    },
    "timeAtCurrentResidence": {
      "type": "string",
      "description": "Prospect Time At Current Residence."
    },
    "type": {
      "type": "string",
      "description": "Prospect Type."
    },
    "typeOfInquiry": {
      "type": "string",
      "description": "Prospect Type Of Inquiry."
    }
  }
}