@salesforce/webapp-template-app-react-sample-b2x-experimental 1.36.4 → 1.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (202) hide show
  1. package/dist/CHANGELOG.md +16 -0
  2. package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +29 -0
  3. package/dist/force-app/main/default/classes/MaintenanceRequestListAction.cls +111 -0
  4. package/dist/force-app/main/default/classes/MaintenanceRequestListAction.cls-meta.xml +6 -0
  5. package/dist/force-app/main/default/classes/MaintenanceRequestUpdatePriorityAction.cls +93 -0
  6. package/dist/force-app/main/default/classes/MaintenanceRequestUpdatePriorityAction.cls-meta.xml +6 -0
  7. package/dist/force-app/main/default/cspTrustedSites/GitHub_Avatars.cspTrustedSite-meta.xml +15 -0
  8. package/dist/force-app/main/default/cspTrustedSites/Google_Fonts.cspTrustedSite-meta.xml +15 -0
  9. package/dist/force-app/main/default/cspTrustedSites/Google_Fonts_Static.cspTrustedSite-meta.xml +15 -0
  10. package/dist/force-app/main/default/cspTrustedSites/Pexels_Images.cspTrustedSite-meta.xml +15 -0
  11. package/dist/force-app/main/default/cspTrustedSites/Pexels_Videos.cspTrustedSite-meta.xml +15 -0
  12. package/dist/force-app/main/default/cspTrustedSites/Unsplash_Images.cspTrustedSite-meta.xml +15 -0
  13. package/dist/force-app/main/default/data/Application__c.json +15 -0
  14. package/dist/force-app/main/default/data/KPI_Snapshot__c.json +160 -0
  15. package/dist/force-app/main/default/data/Lease__c.json +9429 -0
  16. package/dist/force-app/main/default/data/Maintenance_Request__c.json +590 -0
  17. package/dist/force-app/main/default/data/Maintenance_Worker__c.json +324 -0
  18. package/dist/force-app/main/default/data/Payment__c.json +1024 -0
  19. package/dist/force-app/main/default/data/Property_Cost__c.json +484 -0
  20. package/dist/force-app/main/default/data/Property_Feature__c.json +169 -0
  21. package/dist/force-app/main/default/data/Property_Image__c.json +148 -0
  22. package/dist/force-app/main/default/data/Property_Listing__c.json +130 -0
  23. package/dist/force-app/main/default/data/Property_Management_Company__c.json +70 -0
  24. package/dist/force-app/main/default/data/Property_Owner__c.json +184 -0
  25. package/dist/force-app/main/default/data/Property_Sale__c.json +246 -0
  26. package/dist/force-app/main/default/data/Property__c.json +529 -0
  27. package/dist/force-app/main/default/data/Tenant__c.json +9442 -0
  28. package/dist/force-app/main/default/data/data-plan.json +86 -0
  29. package/dist/force-app/main/default/layouts/KPI_Snapshot__c-KPI Snapshot Layout.layout-meta.xml +87 -0
  30. package/dist/force-app/main/default/layouts/Lease__c-Lease Layout.layout-meta.xml +83 -0
  31. package/dist/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +104 -0
  32. package/dist/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +79 -0
  33. package/dist/force-app/main/default/layouts/Payment__c-Payment Layout.layout-meta.xml +88 -0
  34. package/dist/force-app/main/default/layouts/Property_Cost__c-Property Cost Layout.layout-meta.xml +88 -0
  35. package/dist/force-app/main/default/layouts/Property_Feature__c-Property Feature Layout.layout-meta.xml +80 -0
  36. package/dist/force-app/main/default/layouts/Property_Image__c-Property Image Layout.layout-meta.xml +75 -0
  37. package/dist/force-app/main/default/layouts/Property_Listing__c-Property Listing Layout.layout-meta.xml +92 -0
  38. package/dist/force-app/main/default/layouts/Property_Management_Company__c-Property Management Company Layout.layout-meta.xml +75 -0
  39. package/dist/force-app/main/default/layouts/Property_Owner__c-Property Owner Layout.layout-meta.xml +67 -0
  40. package/dist/force-app/main/default/layouts/Property_Sale__c-Property Sale Layout.layout-meta.xml +87 -0
  41. package/dist/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +167 -0
  42. package/dist/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +71 -0
  43. package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +67 -0
  44. package/dist/force-app/main/default/objects/Application__c/fields/Employment_Info__c.field-meta.xml +11 -0
  45. package/dist/force-app/main/default/objects/Application__c/fields/Property__c.field-meta.xml +13 -0
  46. package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +11 -0
  47. package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +10 -0
  48. package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +41 -0
  49. package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +13 -0
  50. package/dist/force-app/main/default/objects/KPI_Snapshot__c/KPI_Snapshot__c.object-meta.xml +65 -0
  51. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Previous_Month_Sales__c.field-meta.xml +12 -0
  52. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Sales_MoM_Change__c.field-meta.xml +18 -0
  53. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Snapshot_Date__c.field-meta.xml +10 -0
  54. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Properties__c.field-meta.xml +13 -0
  55. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Amount__c.field-meta.xml +12 -0
  56. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Count__c.field-meta.xml +13 -0
  57. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Available__c.field-meta.xml +13 -0
  58. package/dist/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Occupied__c.field-meta.xml +13 -0
  59. package/dist/force-app/main/default/objects/Lease__c/Lease__c.object-meta.xml +67 -0
  60. package/dist/force-app/main/default/objects/Lease__c/fields/End_Date__c.field-meta.xml +10 -0
  61. package/dist/force-app/main/default/objects/Lease__c/fields/Lease_Status__c.field-meta.xml +36 -0
  62. package/dist/force-app/main/default/objects/Lease__c/fields/Monthly_Rent__c.field-meta.xml +12 -0
  63. package/dist/force-app/main/default/objects/Lease__c/fields/Property__c.field-meta.xml +15 -0
  64. package/dist/force-app/main/default/objects/Lease__c/fields/Security_Deposit__c.field-meta.xml +12 -0
  65. package/dist/force-app/main/default/objects/Lease__c/fields/Start_Date__c.field-meta.xml +10 -0
  66. package/dist/force-app/main/default/objects/Lease__c/fields/Tenant__c.field-meta.xml +14 -0
  67. package/dist/force-app/main/default/objects/Lease__c/validationRules/End_Date_After_Start_Date.validationRule-meta.xml +10 -0
  68. package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +67 -0
  69. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +12 -0
  70. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Assigned_Worker__c.field-meta.xml +14 -0
  71. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Completed_Date__c.field-meta.xml +10 -0
  72. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Date_Requested__c.field-meta.xml +11 -0
  73. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +12 -0
  74. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Estimated_Cost__c.field-meta.xml +12 -0
  75. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Photo_URL__c.field-meta.xml +10 -0
  76. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +31 -0
  77. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +14 -0
  78. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Scheduled_Date__c.field-meta.xml +10 -0
  79. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +41 -0
  80. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Present__c.field-meta.xml +10 -0
  81. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant__c.field-meta.xml +13 -0
  82. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Title__c.field-meta.xml +12 -0
  83. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +61 -0
  84. package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +65 -0
  85. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Active__c.field-meta.xml +10 -0
  86. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +11 -0
  87. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Email__c.field-meta.xml +10 -0
  88. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +31 -0
  89. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +12 -0
  90. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +10 -0
  91. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +10 -0
  92. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Profile_Picture_URL__c.field-meta.xml +10 -0
  93. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +13 -0
  94. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Specialty__c.field-meta.xml +51 -0
  95. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Years_Experience__c.field-meta.xml +13 -0
  96. package/dist/force-app/main/default/objects/Payment__c/Payment__c.object-meta.xml +67 -0
  97. package/dist/force-app/main/default/objects/Payment__c/fields/Amount__c.field-meta.xml +12 -0
  98. package/dist/force-app/main/default/objects/Payment__c/fields/Lease__c.field-meta.xml +15 -0
  99. package/dist/force-app/main/default/objects/Payment__c/fields/Notes__c.field-meta.xml +11 -0
  100. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Date__c.field-meta.xml +10 -0
  101. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Method__c.field-meta.xml +41 -0
  102. package/dist/force-app/main/default/objects/Payment__c/fields/Payment_Status__c.field-meta.xml +36 -0
  103. package/dist/force-app/main/default/objects/Property_Cost__c/Property_Cost__c.object-meta.xml +67 -0
  104. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Amount__c.field-meta.xml +12 -0
  105. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Category__c.field-meta.xml +56 -0
  106. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Cost_Date__c.field-meta.xml +11 -0
  107. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Description__c.field-meta.xml +12 -0
  108. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Property__c.field-meta.xml +15 -0
  109. package/dist/force-app/main/default/objects/Property_Cost__c/fields/Vendor__c.field-meta.xml +12 -0
  110. package/dist/force-app/main/default/objects/Property_Cost__c/validationRules/Cost_Amount_Limit.validationRule-meta.xml +10 -0
  111. package/dist/force-app/main/default/objects/Property_Feature__c/Property_Feature__c.object-meta.xml +65 -0
  112. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Description__c.field-meta.xml +11 -0
  113. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Display_on_Listing__c.field-meta.xml +10 -0
  114. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Feature_Category__c.field-meta.xml +51 -0
  115. package/dist/force-app/main/default/objects/Property_Feature__c/fields/Property__c.field-meta.xml +15 -0
  116. package/dist/force-app/main/default/objects/Property_Image__c/Property_Image__c.object-meta.xml +65 -0
  117. package/dist/force-app/main/default/objects/Property_Image__c/fields/Alt_Text__c.field-meta.xml +12 -0
  118. package/dist/force-app/main/default/objects/Property_Image__c/fields/Display_Order__c.field-meta.xml +13 -0
  119. package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_Type__c.field-meta.xml +41 -0
  120. package/dist/force-app/main/default/objects/Property_Image__c/fields/Image_URL__c.field-meta.xml +10 -0
  121. package/dist/force-app/main/default/objects/Property_Image__c/fields/Property__c.field-meta.xml +15 -0
  122. package/dist/force-app/main/default/objects/Property_Listing__c/Property_Listing__c.object-meta.xml +65 -0
  123. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Display_Order__c.field-meta.xml +13 -0
  124. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Featured__c.field-meta.xml +10 -0
  125. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Price__c.field-meta.xml +12 -0
  126. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Listing_Status__c.field-meta.xml +41 -0
  127. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Marketing_Description__c.field-meta.xml +11 -0
  128. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Property__c.field-meta.xml +15 -0
  129. package/dist/force-app/main/default/objects/Property_Listing__c/fields/Short_Description__c.field-meta.xml +12 -0
  130. package/dist/force-app/main/default/objects/Property_Management_Company__c/Property_Management_Company__c.object-meta.xml +65 -0
  131. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Active__c.field-meta.xml +10 -0
  132. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Company_Code__c.field-meta.xml +13 -0
  133. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Email__c.field-meta.xml +10 -0
  134. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Phone__c.field-meta.xml +10 -0
  135. package/dist/force-app/main/default/objects/Property_Management_Company__c/fields/Primary_Contact__c.field-meta.xml +14 -0
  136. package/dist/force-app/main/default/objects/Property_Owner__c/Property_Owner__c.object-meta.xml +65 -0
  137. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Address__c.field-meta.xml +10 -0
  138. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Email__c.field-meta.xml +11 -0
  139. package/dist/force-app/main/default/objects/Property_Owner__c/fields/Phone__c.field-meta.xml +10 -0
  140. package/dist/force-app/main/default/objects/Property_Sale__c/Property_Sale__c.object-meta.xml +67 -0
  141. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Buyer_Tenant__c.field-meta.xml +13 -0
  142. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Payment_Method__c.field-meta.xml +41 -0
  143. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Property__c.field-meta.xml +15 -0
  144. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Reference_Number__c.field-meta.xml +12 -0
  145. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Amount__c.field-meta.xml +12 -0
  146. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Date__c.field-meta.xml +10 -0
  147. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Status__c.field-meta.xml +36 -0
  148. package/dist/force-app/main/default/objects/Property_Sale__c/fields/Sale_Type__c.field-meta.xml +51 -0
  149. package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +65 -0
  150. package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +10 -0
  151. package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +10 -0
  152. package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +13 -0
  153. package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +13 -0
  154. package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +11 -0
  155. package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +37 -0
  156. package/dist/force-app/main/default/objects/Property__c/fields/Furnished__c.field-meta.xml +10 -0
  157. package/dist/force-app/main/default/objects/Property__c/fields/HOA_Fee__c.field-meta.xml +12 -0
  158. package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +10 -0
  159. package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +12 -0
  160. package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +12 -0
  161. package/dist/force-app/main/default/objects/Property__c/fields/Parking_Spaces__c.field-meta.xml +13 -0
  162. package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +10 -0
  163. package/dist/force-app/main/default/objects/Property__c/fields/Property_Address__c.field-meta.xml +10 -0
  164. package/dist/force-app/main/default/objects/Property__c/fields/Property_Management_Company__c.field-meta.xml +16 -0
  165. package/dist/force-app/main/default/objects/Property__c/fields/Property_Manager__c.field-meta.xml +13 -0
  166. package/dist/force-app/main/default/objects/Property__c/fields/Property_Owner__c.field-meta.xml +14 -0
  167. package/dist/force-app/main/default/objects/Property__c/fields/Property_Status__c.field-meta.xml +61 -0
  168. package/dist/force-app/main/default/objects/Property__c/fields/Property_Tax_Annual__c.field-meta.xml +12 -0
  169. package/dist/force-app/main/default/objects/Property__c/fields/Property_Type__c.field-meta.xml +46 -0
  170. package/dist/force-app/main/default/objects/Property__c/fields/Property_Value__c.field-meta.xml +12 -0
  171. package/dist/force-app/main/default/objects/Property__c/fields/Purchase_Date__c.field-meta.xml +10 -0
  172. package/dist/force-app/main/default/objects/Property__c/fields/Purchase_Price__c.field-meta.xml +12 -0
  173. package/dist/force-app/main/default/objects/Property__c/fields/Square_Footage__c.field-meta.xml +13 -0
  174. package/dist/force-app/main/default/objects/Property__c/fields/Total_Units__c.field-meta.xml +13 -0
  175. package/dist/force-app/main/default/objects/Property__c/fields/Tour_URL__c.field-meta.xml +10 -0
  176. package/dist/force-app/main/default/objects/Property__c/fields/Utilities_Included__c.field-meta.xml +52 -0
  177. package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +13 -0
  178. package/dist/force-app/main/default/objects/Property__c/validationRules/Property_Value_Range.validationRule-meta.xml +11 -0
  179. package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +65 -0
  180. package/dist/force-app/main/default/objects/Tenant__c/fields/Email__c.field-meta.xml +11 -0
  181. package/dist/force-app/main/default/objects/Tenant__c/fields/Emergency_Contact_Phone__c.field-meta.xml +10 -0
  182. package/dist/force-app/main/default/objects/Tenant__c/fields/Emergency_Contact__c.field-meta.xml +12 -0
  183. package/dist/force-app/main/default/objects/Tenant__c/fields/Lease_End_Date__c.field-meta.xml +10 -0
  184. package/dist/force-app/main/default/objects/Tenant__c/fields/Lease_Property__c.field-meta.xml +13 -0
  185. package/dist/force-app/main/default/objects/Tenant__c/fields/Lease_Start_Date__c.field-meta.xml +10 -0
  186. package/dist/force-app/main/default/objects/Tenant__c/fields/Phone__c.field-meta.xml +10 -0
  187. package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +36 -0
  188. package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +41 -0
  189. package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +13 -0
  190. package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +641 -0
  191. package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +7 -0
  192. package/dist/force-app/main/default/tabs/KPI_Snapshot__c.tab-meta.xml +7 -0
  193. package/dist/force-app/main/default/tabs/Lease__c.tab-meta.xml +7 -0
  194. package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +7 -0
  195. package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +6 -0
  196. package/dist/force-app/main/default/tabs/Payment__c.tab-meta.xml +7 -0
  197. package/dist/force-app/main/default/tabs/Property_Owner__c.tab-meta.xml +7 -0
  198. package/dist/force-app/main/default/tabs/Property_Sale__c.tab-meta.xml +7 -0
  199. package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +7 -0
  200. package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +7 -0
  201. package/dist/package.json +1 -1
  202. package/package.json +12 -3
@@ -0,0 +1,529 @@
1
+ {
2
+ "records": [
3
+ {
4
+ "attributes": {
5
+ "type": "Property__c",
6
+ "referenceId": "PropertyRef1"
7
+ },
8
+ "Name": "301 Bryant St D11",
9
+ "Address__c": "301 Bryant St D11\nSan Francisco, CA 94107",
10
+ "Property_Type__c": "Villa",
11
+ "Monthly_Rent__c": 8500.0,
12
+ "Property_Status__c": "Occupied",
13
+ "Property_Management_Company__c": "@CompanyRef1",
14
+ "Property_Owner__c": "@PropertyOwnerRef1",
15
+ "Bedrooms__c": 4,
16
+ "Bathrooms__c": 3,
17
+ "Square_Footage__c": 3200,
18
+ "Year_Built__c": 2018,
19
+ "Purchase_Price__c": 1850000.0,
20
+ "Property_Value__c": 2100000.0,
21
+ "Total_Units__c": 1,
22
+ "Description__c": "A stunning 4-bedroom, 3-bathroom villa in a peaceful suburban neighborhood with breathtaking ocean views."
23
+ },
24
+ {
25
+ "attributes": {
26
+ "type": "Property__c",
27
+ "referenceId": "PropertyRef2"
28
+ },
29
+ "Name": "415 Mission Street",
30
+ "Address__c": "415 Mission Street\nSan Francisco, CA 94105",
31
+ "Property_Type__c": "Apartment",
32
+ "Monthly_Rent__c": 5975.0,
33
+ "Property_Status__c": "Occupied",
34
+ "Property_Management_Company__c": "@CompanyRef2",
35
+ "Property_Owner__c": "@PropertyOwnerRef2",
36
+ "Bedrooms__c": 2,
37
+ "Bathrooms__c": 2,
38
+ "Square_Footage__c": 1800,
39
+ "Year_Built__c": 2020,
40
+ "Purchase_Price__c": 1250000.0,
41
+ "Property_Value__c": 1400000.0,
42
+ "Total_Units__c": 1,
43
+ "Description__c": "A chic and fully-furnished 2-bedroom apartment with panoramic city views and modern amenities."
44
+ },
45
+ {
46
+ "attributes": {
47
+ "type": "Property__c",
48
+ "referenceId": "PropertyRef3"
49
+ },
50
+ "Name": "Downtown Loft 501",
51
+ "Address__c": "789 Downtown St, Unit 501\nLos Angeles, CA 90014",
52
+ "Property_Type__c": "Apartment",
53
+ "Monthly_Rent__c": 2800.0,
54
+ "Property_Status__c": "Occupied",
55
+ "Property_Management_Company__c": "@CompanyRef1",
56
+ "Property_Owner__c": "@PropertyOwnerRef3",
57
+ "Bedrooms__c": 2,
58
+ "Bathrooms__c": 2,
59
+ "Square_Footage__c": 1400,
60
+ "Year_Built__c": 2016,
61
+ "Purchase_Price__c": 650000.0,
62
+ "Property_Value__c": 750000.0,
63
+ "Total_Units__c": 1,
64
+ "Description__c": "Modern downtown loft with high ceilings and city views."
65
+ },
66
+ {
67
+ "attributes": {
68
+ "type": "Property__c",
69
+ "referenceId": "PropertyRef4"
70
+ },
71
+ "Name": "Garden Studio A12",
72
+ "Address__c": "321 Garden St, Unit A12\nBurbank, CA 91502",
73
+ "Property_Type__c": "Apartment",
74
+ "Monthly_Rent__c": 1800.0,
75
+ "Property_Status__c": "Under Maintenance",
76
+ "Property_Management_Company__c": "@CompanyRef2",
77
+ "Property_Owner__c": "@PropertyOwnerRef4",
78
+ "Bedrooms__c": 1,
79
+ "Bathrooms__c": 1,
80
+ "Square_Footage__c": 950,
81
+ "Year_Built__c": 2014,
82
+ "Purchase_Price__c": 420000.0,
83
+ "Property_Value__c": 480000.0,
84
+ "Total_Units__c": 1,
85
+ "Description__c": "Cozy garden studio in a quiet neighborhood with modern amenities."
86
+ },
87
+ {
88
+ "attributes": {
89
+ "type": "Property__c",
90
+ "referenceId": "PropertyRef5"
91
+ },
92
+ "Name": "Luxury Penthouse 2600",
93
+ "Address__c": "950 East Paces Ferry Rd NE # 2600\nAtlanta, GA 30326",
94
+ "Property_Type__c": "Villa",
95
+ "Monthly_Rent__c": 6250.0,
96
+ "Property_Status__c": "Occupied",
97
+ "Property_Management_Company__c": "@CompanyRef1",
98
+ "Property_Owner__c": "@PropertyOwnerRef5",
99
+ "Bedrooms__c": 3,
100
+ "Bathrooms__c": 3,
101
+ "Square_Footage__c": 2400,
102
+ "Year_Built__c": 2019,
103
+ "Purchase_Price__c": 1200000.0,
104
+ "Property_Value__c": 1350000.0,
105
+ "Total_Units__c": 1,
106
+ "Description__c": "An elegant 3-bedroom, 3-bathroom penthouse in a gated community with luxury amenities and stunning views."
107
+ },
108
+ {
109
+ "attributes": {
110
+ "type": "Property__c",
111
+ "referenceId": "PropertyRef6"
112
+ },
113
+ "Name": "Sunset Towers Unit 403",
114
+ "Address__c": "8250 Sunset Blvd, Unit 403\nWest Hollywood, CA 90046",
115
+ "Property_Type__c": "Apartment",
116
+ "Monthly_Rent__c": 4200.0,
117
+ "Property_Status__c": "Occupied",
118
+ "Property_Management_Company__c": "@CompanyRef3",
119
+ "Property_Owner__c": "@PropertyOwnerRef6",
120
+ "Bedrooms__c": 2,
121
+ "Bathrooms__c": 2,
122
+ "Square_Footage__c": 1200,
123
+ "Year_Built__c": 2017,
124
+ "Purchase_Price__c": 850000.0,
125
+ "Property_Value__c": 950000.0,
126
+ "Total_Units__c": 1,
127
+ "Description__c": "Modern high-rise apartment with floor-to-ceiling windows and stunning sunset views over the city."
128
+ },
129
+ {
130
+ "attributes": {
131
+ "type": "Property__c",
132
+ "referenceId": "PropertyRef7"
133
+ },
134
+ "Name": "Ocean View Villa",
135
+ "Address__c": "1247 Ocean Blvd\nSanta Monica, CA 90401",
136
+ "Property_Type__c": "Single Family Home",
137
+ "Monthly_Rent__c": 12000.0,
138
+ "Property_Status__c": "Available",
139
+ "Property_Management_Company__c": "@CompanyRef4",
140
+ "Property_Owner__c": "@PropertyOwnerRef7",
141
+ "Bedrooms__c": 5,
142
+ "Bathrooms__c": 4,
143
+ "Square_Footage__c": 4200,
144
+ "Year_Built__c": 2021,
145
+ "Purchase_Price__c": 3200000.0,
146
+ "Property_Value__c": 3500000.0,
147
+ "Total_Units__c": 1,
148
+ "Description__c": "Stunning beachfront home with direct ocean access, modern kitchen, and panoramic views."
149
+ },
150
+ {
151
+ "attributes": {
152
+ "type": "Property__c",
153
+ "referenceId": "PropertyRef8"
154
+ },
155
+ "Name": "Tech Hub Condo",
156
+ "Address__c": "2100 University Ave, Unit 15B\nPalo Alto, CA 94301",
157
+ "Property_Type__c": "Condo",
158
+ "Monthly_Rent__c": 7500.0,
159
+ "Property_Status__c": "Occupied",
160
+ "Property_Management_Company__c": "@CompanyRef5",
161
+ "Property_Owner__c": "@PropertyOwnerRef8",
162
+ "Bedrooms__c": 3,
163
+ "Bathrooms__c": 2,
164
+ "Square_Footage__c": 2000,
165
+ "Year_Built__c": 2019,
166
+ "Purchase_Price__c": 1800000.0,
167
+ "Property_Value__c": 2000000.0,
168
+ "Total_Units__c": 1,
169
+ "Description__c": "Modern condo in the heart of Silicon Valley with smart home features and rooftop deck."
170
+ },
171
+ {
172
+ "attributes": {
173
+ "type": "Property__c",
174
+ "referenceId": "PropertyRef9"
175
+ },
176
+ "Name": "Historic Brownstone",
177
+ "Address__c": "456 Telegraph Hill Blvd\nSan Francisco, CA 94133",
178
+ "Property_Type__c": "Townhouse",
179
+ "Monthly_Rent__c": 9800.0,
180
+ "Property_Status__c": "Occupied",
181
+ "Property_Management_Company__c": "@CompanyRef1",
182
+ "Property_Owner__c": "@PropertyOwnerRef9",
183
+ "Bedrooms__c": 4,
184
+ "Bathrooms__c": 3,
185
+ "Square_Footage__c": 2800,
186
+ "Year_Built__c": 1925,
187
+ "Purchase_Price__c": 2100000.0,
188
+ "Property_Value__c": 2400000.0,
189
+ "Total_Units__c": 1,
190
+ "Description__c": "Charming historic brownstone with original hardwood floors, exposed brick, and modern updates."
191
+ },
192
+ {
193
+ "attributes": {
194
+ "type": "Property__c",
195
+ "referenceId": "PropertyRef10"
196
+ },
197
+ "Name": "Marina District Studio",
198
+ "Address__c": "3300 Fillmore St, Apt 2A\nSan Francisco, CA 94123",
199
+ "Property_Type__c": "Apartment",
200
+ "Monthly_Rent__c": 3200.0,
201
+ "Property_Status__c": "Available",
202
+ "Property_Management_Company__c": "@CompanyRef2",
203
+ "Property_Owner__c": "@PropertyOwnerRef10",
204
+ "Bedrooms__c": 1,
205
+ "Bathrooms__c": 1,
206
+ "Square_Footage__c": 750,
207
+ "Year_Built__c": 2015,
208
+ "Purchase_Price__c": 675000.0,
209
+ "Property_Value__c": 725000.0,
210
+ "Total_Units__c": 1,
211
+ "Description__c": "Bright studio apartment in trendy Marina District with city views and modern amenities."
212
+ },
213
+ {
214
+ "attributes": {
215
+ "type": "Property__c",
216
+ "referenceId": "PropertyRef11"
217
+ },
218
+ "Name": "Beverly Hills Estate",
219
+ "Address__c": "9200 Sunset Blvd\nBeverly Hills, CA 90210",
220
+ "Property_Type__c": "Villa",
221
+ "Monthly_Rent__c": 25000.0,
222
+ "Property_Status__c": "For Sale",
223
+ "Property_Management_Company__c": "@CompanyRef4",
224
+ "Property_Owner__c": "@PropertyOwnerRef11",
225
+ "Bedrooms__c": 7,
226
+ "Bathrooms__c": 6,
227
+ "Square_Footage__c": 8500,
228
+ "Year_Built__c": 2020,
229
+ "Purchase_Price__c": 8500000.0,
230
+ "Property_Value__c": 9200000.0,
231
+ "Total_Units__c": 1,
232
+ "Description__c": "Magnificent estate with pool, tennis court, wine cellar, and breathtaking city views."
233
+ },
234
+ {
235
+ "attributes": {
236
+ "type": "Property__c",
237
+ "referenceId": "PropertyRef12"
238
+ },
239
+ "Name": "Downtown Office Suite",
240
+ "Address__c": "555 Market St, Suite 1200\nSan Francisco, CA 94105",
241
+ "Property_Type__c": "Commercial",
242
+ "Monthly_Rent__c": 15000.0,
243
+ "Property_Status__c": "Occupied",
244
+ "Property_Management_Company__c": "@CompanyRef3",
245
+ "Property_Owner__c": "@PropertyOwnerRef12",
246
+ "Bedrooms__c": 0,
247
+ "Bathrooms__c": 4,
248
+ "Square_Footage__c": 5000,
249
+ "Year_Built__c": 2018,
250
+ "Purchase_Price__c": 4200000.0,
251
+ "Property_Value__c": 4500000.0,
252
+ "Total_Units__c": 10,
253
+ "Description__c": "Modern office space with open floor plan, conference rooms, and panoramic bay views."
254
+ },
255
+ {
256
+ "attributes": {
257
+ "type": "Property__c",
258
+ "referenceId": "PropertyRef13"
259
+ },
260
+ "Name": "Napa Valley Retreat",
261
+ "Address__c": "1050 Vineyard Rd\nNapa, CA 94558",
262
+ "Property_Type__c": "Single Family Home",
263
+ "Monthly_Rent__c": 8500.0,
264
+ "Property_Status__c": "Available",
265
+ "Property_Management_Company__c": "@CompanyRef5",
266
+ "Property_Owner__c": "@PropertyOwnerRef13",
267
+ "Bedrooms__c": 4,
268
+ "Bathrooms__c": 3,
269
+ "Square_Footage__c": 3500,
270
+ "Year_Built__c": 2016,
271
+ "Purchase_Price__c": 1850000.0,
272
+ "Property_Value__c": 2100000.0,
273
+ "Total_Units__c": 1,
274
+ "Description__c": "Beautiful wine country home with vineyard views, gourmet kitchen, and outdoor entertainment area."
275
+ },
276
+ {
277
+ "attributes": {
278
+ "type": "Property__c",
279
+ "referenceId": "PropertyRef14"
280
+ },
281
+ "Name": "Silicon Valley Townhome",
282
+ "Address__c": "875 Middlefield Rd\nMountain View, CA 94043",
283
+ "Property_Type__c": "Townhouse",
284
+ "Monthly_Rent__c": 6800.0,
285
+ "Property_Status__c": "Occupied",
286
+ "Property_Management_Company__c": "@CompanyRef1",
287
+ "Property_Owner__c": "@PropertyOwnerRef14",
288
+ "Bedrooms__c": 3,
289
+ "Bathrooms__c": 2,
290
+ "Square_Footage__c": 1850,
291
+ "Year_Built__c": 2017,
292
+ "Purchase_Price__c": 1450000.0,
293
+ "Property_Value__c": 1600000.0,
294
+ "Total_Units__c": 1,
295
+ "Description__c": "Contemporary townhome near tech companies with private garage and community amenities."
296
+ },
297
+ {
298
+ "attributes": {
299
+ "type": "Property__c",
300
+ "referenceId": "PropertyRef15"
301
+ },
302
+ "Name": "Artistic Loft Space",
303
+ "Address__c": "1800 Industrial St, Unit 5\nOakland, CA 94607",
304
+ "Property_Type__c": "Apartment",
305
+ "Monthly_Rent__c": 3500.0,
306
+ "Property_Status__c": "Occupied",
307
+ "Property_Management_Company__c": "@CompanyRef2",
308
+ "Property_Owner__c": "@PropertyOwnerRef15",
309
+ "Bedrooms__c": 2,
310
+ "Bathrooms__c": 1,
311
+ "Square_Footage__c": 1600,
312
+ "Year_Built__c": 2015,
313
+ "Purchase_Price__c": 580000.0,
314
+ "Property_Value__c": 650000.0,
315
+ "Total_Units__c": 1,
316
+ "Description__c": "Converted warehouse loft with soaring ceilings, exposed beams, and artistic neighborhood."
317
+ },
318
+ {
319
+ "attributes": {
320
+ "type": "Property__c",
321
+ "referenceId": "PropertyRef16"
322
+ },
323
+ "Name": "Luxury High-Rise Unit",
324
+ "Address__c": "88 Howard St, Unit 4501\nSan Francisco, CA 94105",
325
+ "Property_Type__c": "Condo",
326
+ "Monthly_Rent__c": 11000.0,
327
+ "Property_Status__c": "Under Maintenance",
328
+ "Property_Management_Company__c": "@CompanyRef4",
329
+ "Property_Owner__c": "@PropertyOwnerRef16",
330
+ "Bedrooms__c": 3,
331
+ "Bathrooms__c": 3,
332
+ "Square_Footage__c": 2200,
333
+ "Year_Built__c": 2019,
334
+ "Purchase_Price__c": 2800000.0,
335
+ "Property_Value__c": 3100000.0,
336
+ "Total_Units__c": 1,
337
+ "Description__c": "Ultra-luxury penthouse with concierge service, gym, and incredible bay and city views."
338
+ },
339
+ {
340
+ "attributes": {
341
+ "type": "Property__c",
342
+ "referenceId": "PropertyRef17"
343
+ },
344
+ "Name": "Cozy Family Home",
345
+ "Address__c": "425 Pine St\nRedwood City, CA 94063",
346
+ "Property_Type__c": "Single Family Home",
347
+ "Monthly_Rent__c": 5200.0,
348
+ "Property_Status__c": "Occupied",
349
+ "Property_Management_Company__c": "@CompanyRef3",
350
+ "Property_Owner__c": "@PropertyOwnerRef17",
351
+ "Bedrooms__c": 3,
352
+ "Bathrooms__c": 2,
353
+ "Square_Footage__c": 1750,
354
+ "Year_Built__c": 2012,
355
+ "Purchase_Price__c": 1100000.0,
356
+ "Property_Value__c": 1280000.0,
357
+ "Total_Units__c": 1,
358
+ "Description__c": "Charming family home with large backyard, updated kitchen, and excellent school district."
359
+ },
360
+ {
361
+ "attributes": {
362
+ "type": "Property__c",
363
+ "referenceId": "PropertyRef18"
364
+ },
365
+ "Name": "Modern Studio Apartment",
366
+ "Address__c": "210 King St, Apt 18C\nSan Francisco, CA 94107",
367
+ "Property_Type__c": "Apartment",
368
+ "Monthly_Rent__c": 2800.0,
369
+ "Property_Status__c": "Available",
370
+ "Property_Management_Company__c": "@CompanyRef5",
371
+ "Property_Owner__c": "@PropertyOwnerRef18",
372
+ "Bedrooms__c": 1,
373
+ "Bathrooms__c": 1,
374
+ "Square_Footage__c": 650,
375
+ "Year_Built__c": 2020,
376
+ "Purchase_Price__c": 625000.0,
377
+ "Property_Value__c": 675000.0,
378
+ "Total_Units__c": 1,
379
+ "Description__c": "Brand new studio with smart home features, in-unit laundry, and rooftop terrace access."
380
+ },
381
+ {
382
+ "attributes": {
383
+ "type": "Property__c",
384
+ "referenceId": "PropertyRef19"
385
+ },
386
+ "Name": "Executive Suite",
387
+ "Address__c": "1000 California St, Unit 25A\nSan Francisco, CA 94108",
388
+ "Property_Type__c": "Condo",
389
+ "Monthly_Rent__c": 13500.0,
390
+ "Property_Status__c": "Occupied",
391
+ "Property_Management_Company__c": "@CompanyRef1",
392
+ "Property_Owner__c": "@PropertyOwnerRef1",
393
+ "Bedrooms__c": 2,
394
+ "Bathrooms__c": 2,
395
+ "Square_Footage__c": 1900,
396
+ "Year_Built__c": 2018,
397
+ "Purchase_Price__c": 3200000.0,
398
+ "Property_Value__c": 3500000.0,
399
+ "Total_Units__c": 1,
400
+ "Description__c": "Sophisticated executive condo with marble finishes, city views, and luxury building amenities."
401
+ },
402
+ {
403
+ "attributes": {
404
+ "type": "Property__c",
405
+ "referenceId": "PropertyRef20"
406
+ },
407
+ "Name": "Historic Victorian",
408
+ "Address__c": "1875 Sacramento St\nSan Francisco, CA 94109",
409
+ "Property_Type__c": "Single Family Home",
410
+ "Monthly_Rent__c": 15000.0,
411
+ "Property_Status__c": "Renovation",
412
+ "Property_Management_Company__c": "@CompanyRef2",
413
+ "Property_Owner__c": "@PropertyOwnerRef2",
414
+ "Bedrooms__c": 5,
415
+ "Bathrooms__c": 4,
416
+ "Square_Footage__c": 4000,
417
+ "Year_Built__c": 1890,
418
+ "Purchase_Price__c": 4500000.0,
419
+ "Property_Value__c": 5200000.0,
420
+ "Total_Units__c": 1,
421
+ "Description__c": "Fully restored Victorian mansion with period details, modern conveniences, and garden."
422
+ },
423
+ {
424
+ "attributes": {
425
+ "type": "Property__c",
426
+ "referenceId": "PropertyRef21"
427
+ },
428
+ "Name": "Bayside Apartments 2B",
429
+ "Address__c": "1600 Bay St, Unit 2B\nSan Francisco, CA 94123",
430
+ "Property_Type__c": "Apartment",
431
+ "Monthly_Rent__c": 4500.0,
432
+ "Property_Status__c": "Occupied",
433
+ "Property_Management_Company__c": "@CompanyRef3",
434
+ "Property_Owner__c": "@PropertyOwnerRef3",
435
+ "Bedrooms__c": 2,
436
+ "Bathrooms__c": 1,
437
+ "Square_Footage__c": 1100,
438
+ "Year_Built__c": 2014,
439
+ "Purchase_Price__c": 950000.0,
440
+ "Property_Value__c": 1050000.0,
441
+ "Total_Units__c": 1,
442
+ "Description__c": "Bright apartment with bay views, hardwood floors, and walking distance to Marina Green."
443
+ },
444
+ {
445
+ "attributes": {
446
+ "type": "Property__c",
447
+ "referenceId": "PropertyRef22"
448
+ },
449
+ "Name": "Garden Oaks Townhouse",
450
+ "Address__c": "2250 Oak St\nBerkeley, CA 94709",
451
+ "Property_Type__c": "Townhouse",
452
+ "Monthly_Rent__c": 4200.0,
453
+ "Property_Status__c": "Available",
454
+ "Property_Management_Company__c": "@CompanyRef4",
455
+ "Property_Owner__c": "@PropertyOwnerRef4",
456
+ "Bedrooms__c": 3,
457
+ "Bathrooms__c": 2,
458
+ "Square_Footage__c": 1650,
459
+ "Year_Built__c": 2013,
460
+ "Purchase_Price__c": 875000.0,
461
+ "Property_Value__c": 980000.0,
462
+ "Total_Units__c": 1,
463
+ "Description__c": "Comfortable townhouse with private patio, attached garage, and close to UC Berkeley."
464
+ },
465
+ {
466
+ "attributes": {
467
+ "type": "Property__c",
468
+ "referenceId": "PropertyRef23"
469
+ },
470
+ "Name": "Startup Hub Office",
471
+ "Address__c": "650 Townsend St, Floor 3\nSan Francisco, CA 94103",
472
+ "Property_Type__c": "Commercial",
473
+ "Monthly_Rent__c": 22000.0,
474
+ "Property_Status__c": "Occupied",
475
+ "Property_Management_Company__c": "@CompanyRef5",
476
+ "Property_Owner__c": "@PropertyOwnerRef5",
477
+ "Bedrooms__c": 0,
478
+ "Bathrooms__c": 6,
479
+ "Square_Footage__c": 8000,
480
+ "Year_Built__c": 2016,
481
+ "Purchase_Price__c": 6500000.0,
482
+ "Property_Value__c": 7200000.0,
483
+ "Total_Units__c": 15,
484
+ "Description__c": "Modern open office space perfect for tech startups with high-speed internet and flexible layout."
485
+ },
486
+ {
487
+ "attributes": {
488
+ "type": "Property__c",
489
+ "referenceId": "PropertyRef24"
490
+ },
491
+ "Name": "Sunset District Family Home",
492
+ "Address__c": "1950 46th Ave\nSan Francisco, CA 94116",
493
+ "Property_Type__c": "Single Family Home",
494
+ "Monthly_Rent__c": 6800.0,
495
+ "Property_Status__c": "Occupied",
496
+ "Property_Management_Company__c": "@CompanyRef1",
497
+ "Property_Owner__c": "@PropertyOwnerRef6",
498
+ "Bedrooms__c": 4,
499
+ "Bathrooms__c": 3,
500
+ "Square_Footage__c": 2400,
501
+ "Year_Built__c": 2010,
502
+ "Purchase_Price__c": 1650000.0,
503
+ "Property_Value__c": 1850000.0,
504
+ "Total_Units__c": 1,
505
+ "Description__c": "Spacious family home with modern kitchen, large basement, and proximity to Golden Gate Park."
506
+ },
507
+ {
508
+ "attributes": {
509
+ "type": "Property__c",
510
+ "referenceId": "PropertyRef25"
511
+ },
512
+ "Name": "Mission Bay Loft",
513
+ "Address__c": "350 Third St, Unit 12A\nSan Francisco, CA 94107",
514
+ "Property_Type__c": "Apartment",
515
+ "Monthly_Rent__c": 5500.0,
516
+ "Property_Status__c": "Under Contract",
517
+ "Property_Management_Company__c": "@CompanyRef2",
518
+ "Property_Owner__c": "@PropertyOwnerRef7",
519
+ "Bedrooms__c": 2,
520
+ "Bathrooms__c": 2,
521
+ "Square_Footage__c": 1400,
522
+ "Year_Built__c": 2019,
523
+ "Purchase_Price__c": 1350000.0,
524
+ "Property_Value__c": 1450000.0,
525
+ "Total_Units__c": 1,
526
+ "Description__c": "Contemporary loft in vibrant Mission Bay with waterfront access and modern amenities."
527
+ }
528
+ ]
529
+ }