PropertyPal is a desktop application that helps real estate agents manage their client information and preferences efficiently. It offers tools to store, search, and organize client information — such as names, contact details, preferred areas, and property types — all in one place.
Ensure you have Java 17 or above installed on your computer.
Java 17 can be downloaded from here. Make sure that you choose the correct Operating System.
Mac users: Ensure you have the precise JDK version prescribed here.
Download the latest .jar file from here.
Create a new empty folder at a location of your choice on your computer.
Copy the file to the folder you created in step 3 to use as the home folder for your PropertyPal.
Open a command terminal, navigate into the folder you put the jar file in, and use the java -jar PropertyPal.jar command to run the application.
A GUI should appear in a few seconds. Refer to UI below for more details. Note that the app contains some sample data by default.
Alternatively, you may also double-click the jar file to run the application (depending on your OS settings).
Type the command in the command box and press Enter to execute it. e.g. typing help and pressing Enter will open the help window.
Some example commands you can try:
list : Lists all contacts.
add i/sell n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01 pt/HDB 3 room flat pr/470000 : Adds a contact named John Doe to PropertyPal, with the intention to sell his property.
delete 3 : Deletes the 3rd contact shown in the current list.
clear : Deletes all contacts.
exit : Exits the app.
Refer to the Features below for details of each command.

The application has a Graphical User Interface (GUI) with the following components:
All fields in PropertyPal are case-insensitive — searches and comparisons ignore case, but entries are displayed exactly as entered by the user.
| Field | Validation Rules | Valid Examples | Invalid Examples |
|---|---|---|---|
Intention (i/) | Must be either sell or rent. | i/sell, i/rent, i/Rent | i/selling, i/lease |
Name (n/) | Must start with a letter and contain only letters, numbers, accents, spaces, periods, apostrophes, slashes, or hyphens. | n/John Doe, n/Anne-Marie Tan, n/O’Connor, n/José Álvarez | n/@John, n/ , n/#Peter |
Phone (p/) | May begin with a +, followed by digits, spaces, or dashes. Must contain at least 7 digits total. | p/98765432, p/+65 9123 4567, p/123-4567 | p/12-34, p/abc123, p/++6598765432 |
Email (e/) | Must follow the format <local-part>@<domain>. The local part may contain alphanumeric characters and ., _, +, or - (not starting/ending with them). The domain must consist of labels separated by . that each start and end with an alphanumeric character, with the final label at least 2 characters long. | e/johndoe@example.com, e/casey_low@yahoo.com.sg, e/user123@gmail.com | e/@gmail.com, e/user@@mail.com, e/john@, e/john@.com |
Address (a/) | Cannot be blank or start with a whitespace. May contain any characters after the first non-space. | a/Blk 425, Clementi Ave 1 #03-45 120425, a/12 Bishan St 22 | a/ (blank), a/ 45 Clementi (starts with space) |
Property Type (pt/) | Up to 100 characters, cannot be blank or start with a space. | pt/HDB 3 room flat, pt/Condominium, pt/Landed house | pt/ , pt/ (blank) |
Price (pr/) | Must be a positive number ≤ 13 digits, optionally with commas and up to 2 decimal places. Cannot be blank or contain symbols other than commas or one decimal point. Commas should be placed correctly (like 1,000 or 100,000). | pr/450000, pr/1,200,000, pr/4700.50 | pr/-5000, pr/$2000, pr/1,000.000, pr/, pr/100,00,0 |
Note: PropertyPal is designed under the assumption that all properties belong to a single country. This reflects common industry practices, as property agents are generally licensed to handle transactions only within their national jurisdiction and currency. Thus, all property prices entered in PropertyPal are assumed to be in the same currency of the country where the agent operates.
Notes about the command format:
Words in UPPER_CASE are the parameters to be supplied by the user.
e.g. in add n/NAME, NAME is a parameter which can be used as add n/John Doe.
Items in square brackets are optional.
e.g n/NAME [e/EMAIL] can be used as n/John Doe e/johndoe@example.com or as n/John Doe.
Items in square brackets with … after them can be used multiple times including zero times.
e.g. [pt/PROPERTY_TYPE]… can be used as (i.e. 0 times), pt/condo, pt/condo pt/hdb etc.
Parameters can be in any order.
e.g. if the command specifies n/NAME p/PHONE_NUMBER, p/PHONE_NUMBER n/NAME is also acceptable.
Extraneous parameters for commands that do not take in parameters (such as help, list, exit and clear) will be ignored.
e.g. if the command specifies help 123, it will be interpreted as help.
The find command now supports prefix-based searches (n/, p/, e/, a/, i/, pt/, pr/) instead of plain keywords.
Prefixes specify which fields to search in. For example, find n/Alex e/gmail searches by name and email.
If you are using a PDF version of this document, be careful when copying and pasting commands that span multiple lines as space characters surrounding line-breaks may be omitted when copied over to the application.
The INTENTION parameter in the add and find commands refers to the client's intention regarding property transactions: selling or renting. This helps in categorizing clients based on their property-related goals.
sell or rent (case-insensitive). Inputs are accepted in any case and will be normalized to lowercase internally (e.g., Sell, SELL, and sell are all valid and stored as sell). Other values, abbreviations, or synonyms are not accepted.helpShows a message explaining how to access the help page.
Format: help
addAdds a person to PropertyPal.
Format: add i/INTENTION n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS pt/PROPERTY_TYPE pr/PRICE
Examples:
add i/rent n/John Doe p/98765432 e/johnd@example.com a/John street, block 123, #01-01 pt/HDB 3 room flat pr/4700add i/sell n/Betsy Crowe e/betsycrowe@example.com a/Caldecott Road #12-34, Singapore 756467 pt/Condominium pr/1200000.50 p/+65 81234567 
listDisplays all persons in PropertyPal, sorted by:
Format: list
editEdits an existing person in PropertyPal.
Format: edit INDEX [i/INTENTION] [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [pt/PROPERTY_TYPE] [pr/PRICE]
INDEX. The index refers to the index number shown in the displayed person list. The index must be a positive integer 1, 2, 3, …Examples:
edit 2 p/99099090 e/aaron@gmail.com Edits the phone number and email address of the 2nd person to be 99099090 and aaron@gmail.com respectively.
findFinds persons whose name, phone, email, address, intention, property type, or price contain any of the given keywords.
Apart from the price field, the search uses substring matching (e.g. ali matches Alice).
Format: find [i/INTENTION]… [n/NAME]… [p/PHONE_NUMBER]… [e/EMAIL]… [a/ADDRESS]… [pt/PROPERTY_TYPE]… [pr/PRICE]…
At least one prefix must be provided.
You may include multiple prefixes in the same command — results are combined using OR semantics (a person matches if any field matches).
Words separated by spaces are considered separate keywords.
Parameters can appear in any order.
The order of the keywords does not matter. e.g. Hans Bo will match Bo Hans.
Persons matching at least one given keyword will be returned. Each keyword is separated by a space.
e.g. find n/Alice Casey will return Alice Tan, Casey Low as results in the contact list.
Finding by Price:
pr/2000) will return contacts who match that exact value.pr/2000-3000) will return contacts who fall within the range of values specified (inclusive).Examples:
find n/Alex — finds persons whose name contains “alex”.find n/John p/9123 — finds persons whose name, phone match any of the given keywords.
deleteDeletes the specified person from PropertyPal.
Format: delete INDEX or delete n/NAME [n/NAME]…
INDEX, OR one or more persons by exact NAME(s). Do not mix index and names in the same command.NAME to delete (e.g., delete n/John Doe), PropertyPal will match and delete all persons whose full name exactly matches John Doe (case-insensitive). If the name matches multiple entries, the application will display a confirmation warning listing all matched entries and append a note such as:
Examples:
list followed by delete 2 deletes the 2nd person in PropertyPal.find n/Betsy followed by delete 1 deletes the 1st person in the results of the find command.delete n/John Doe deletes the person named John Doe.delete n/John Doe n/Jane Smith shows a confirmation message listing both persons; re-run with yes to proceed.clearClears all entries from PropertyPal.
Format: clear
exitExits the program.
Format: exit
PropertyPal data are saved in the hard disk automatically after any command that changes the data. There is no need to save manually.
PropertyPal data are saved automatically as a JSON file [JAR file location]/data/propertypal.json. Advanced users are welcome to update data directly by editing that data file.
Caution:
If your changes to the data file makes its format invalid, PropertyPal will discard all data and start with an empty data file at the next run. Hence, it is recommended to take a backup of the file before editing it.
Furthermore, certain edits can cause the PropertyPal to behave in unexpected ways (e.g., if a value entered is outside the acceptable range). Therefore, edit the data file only if you are confident that you can update it correctly.
Q: How do I transfer my data to another Computer?
A: Install the app in the other computer and overwrite the empty data file it creates with the file that contains the data of your previous PropertyPal home folder.
preferences.json file created by the application before running the application again.help command (or use the Help menu, or the keyboard shortcut F1) again, the original Help Window will remain minimized, and no new Help Window will appear. The remedy is to manually restore the minimized Help Window.| Action | Format, Examples |
|---|---|
| Add | add i/INTENTION n/NAME p/PHONE_NUMBER e/EMAIL a/ADDRESS pt/PROPERTY_TYPE pr/PRICE e.g., add i/sell n/James Ho p/22224444 e/jamesho@example.com a/123, Clementi Rd, 1234665 pt/HDB 3 room flat pr/470000 |
| Clear | clear |
| Delete | delete INDEX or delete n/NAME [n/NAME]…e.g., delete 3 or delete n/John Doe n/Jane Smith followed by yes |
| Edit | edit INDEX [n/NAME] [p/PHONE_NUMBER] [e/EMAIL] [a/ADDRESS] [pt/PROPERTY_TYPE] [pr/PRICE]e.g., edit 2 n/James Lee e/jameslee@example.com |
| Find | find [i/INTENTION]… [n/NAME]… [p/PHONE_NUMBER]… [e/EMAIL]… [a/ADDRESS]… [pt/PROPERTY_TYPE]… [pr/PRICE]…e.g., find n/James p/9876 e/gmail a/Clementi |
| List | list |
| Help | help |