@salesforce/ui-bundle-template-feature-property-management-metadata 1.117.2

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 (206) hide show
  1. package/LICENSE.txt +82 -0
  2. package/package.json +25 -0
  3. package/src/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls +69 -0
  4. package/src/force-app/main/default/classes/MaintenanceRequestTriggerHandler.cls-meta.xml +5 -0
  5. package/src/force-app/main/default/classes/MaintenanceRequestTriggerHandler_Test.cls +308 -0
  6. package/src/force-app/main/default/classes/MaintenanceRequestTriggerHandler_Test.cls-meta.xml +5 -0
  7. package/src/force-app/main/default/classes/TenantTriggerHandler.cls +77 -0
  8. package/src/force-app/main/default/classes/TenantTriggerHandler.cls-meta.xml +5 -0
  9. package/src/force-app/main/default/classes/TenantTriggerHandler_Test.cls +100 -0
  10. package/src/force-app/main/default/classes/TenantTriggerHandler_Test.cls-meta.xml +5 -0
  11. package/src/force-app/main/default/cspTrustedSites/GitHub_Avatars.cspTrustedSite-meta.xml +15 -0
  12. package/src/force-app/main/default/cspTrustedSites/Google_Fonts.cspTrustedSite-meta.xml +15 -0
  13. package/src/force-app/main/default/cspTrustedSites/Google_Fonts_Static.cspTrustedSite-meta.xml +15 -0
  14. package/src/force-app/main/default/cspTrustedSites/OpenStreetMap_Nominatim.cspTrustedSite-meta.xml +15 -0
  15. package/src/force-app/main/default/cspTrustedSites/OpenStreetMap_Tiles.cspTrustedSite-meta.xml +15 -0
  16. package/src/force-app/main/default/cspTrustedSites/Open_Meteo_API.cspTrustedSite-meta.xml +15 -0
  17. package/src/force-app/main/default/cspTrustedSites/Pexels_Images.cspTrustedSite-meta.xml +15 -0
  18. package/src/force-app/main/default/cspTrustedSites/Pexels_Videos.cspTrustedSite-meta.xml +15 -0
  19. package/src/force-app/main/default/cspTrustedSites/Unsplash_Images.cspTrustedSite-meta.xml +15 -0
  20. package/src/force-app/main/default/data/Agent__c.json +79 -0
  21. package/src/force-app/main/default/data/Application__c.json +124 -0
  22. package/src/force-app/main/default/data/Contact.json +44 -0
  23. package/src/force-app/main/default/data/KPI_Snapshot__c.json +160 -0
  24. package/src/force-app/main/default/data/Lease__c.json +9442 -0
  25. package/src/force-app/main/default/data/Maintenance_Request__c.json +514 -0
  26. package/src/force-app/main/default/data/Maintenance_Worker__c.json +304 -0
  27. package/src/force-app/main/default/data/Notification__c.json +214 -0
  28. package/src/force-app/main/default/data/Payment__c.json +1024 -0
  29. package/src/force-app/main/default/data/Property_Cost__c.json +484 -0
  30. package/src/force-app/main/default/data/Property_Feature__c.json +169 -0
  31. package/src/force-app/main/default/data/Property_Image__c.json +148 -0
  32. package/src/force-app/main/default/data/Property_Listing__c.json +130 -0
  33. package/src/force-app/main/default/data/Property_Management_Company__c.json +70 -0
  34. package/src/force-app/main/default/data/Property_Owner__c.json +184 -0
  35. package/src/force-app/main/default/data/Property_Sale__c.json +246 -0
  36. package/src/force-app/main/default/data/Property__c.json +704 -0
  37. package/src/force-app/main/default/data/Tenant__c.json +184 -0
  38. package/src/force-app/main/default/data/data-plan.json +110 -0
  39. package/src/force-app/main/default/data/prepare-import-unique-fields.js +85 -0
  40. package/src/force-app/main/default/layouts/Application__c-Application Layout.layout-meta.xml +58 -0
  41. package/src/force-app/main/default/layouts/KPI_Snapshot__c-KPI Snapshot Layout.layout-meta.xml +87 -0
  42. package/src/force-app/main/default/layouts/Lease__c-Lease Layout.layout-meta.xml +83 -0
  43. package/src/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +89 -0
  44. package/src/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +66 -0
  45. package/src/force-app/main/default/layouts/Payment__c-Payment Layout.layout-meta.xml +88 -0
  46. package/src/force-app/main/default/layouts/Property_Cost__c-Property Cost Layout.layout-meta.xml +88 -0
  47. package/src/force-app/main/default/layouts/Property_Feature__c-Property Feature Layout.layout-meta.xml +80 -0
  48. package/src/force-app/main/default/layouts/Property_Image__c-Property Image Layout.layout-meta.xml +75 -0
  49. package/src/force-app/main/default/layouts/Property_Listing__c-Property Listing Layout.layout-meta.xml +92 -0
  50. package/src/force-app/main/default/layouts/Property_Management_Company__c-Property Management Company Layout.layout-meta.xml +75 -0
  51. package/src/force-app/main/default/layouts/Property_Owner__c-Property Owner Layout.layout-meta.xml +67 -0
  52. package/src/force-app/main/default/layouts/Property_Sale__c-Property Sale Layout.layout-meta.xml +87 -0
  53. package/src/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +130 -0
  54. package/src/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +58 -0
  55. package/src/force-app/main/default/objects/Agent__c/Agent__c.object-meta.xml +66 -0
  56. package/src/force-app/main/default/objects/Agent__c/fields/Agent_Type__c.field-meta.xml +37 -0
  57. package/src/force-app/main/default/objects/Agent__c/fields/Availability__c.field-meta.xml +37 -0
  58. package/src/force-app/main/default/objects/Agent__c/fields/Emergency_Alt__c.field-meta.xml +11 -0
  59. package/src/force-app/main/default/objects/Agent__c/fields/Language__c.field-meta.xml +42 -0
  60. package/src/force-app/main/default/objects/Agent__c/fields/License_Expiry__c.field-meta.xml +11 -0
  61. package/src/force-app/main/default/objects/Agent__c/fields/License_Number__c.field-meta.xml +14 -0
  62. package/src/force-app/main/default/objects/Agent__c/fields/Office_Location__c.field-meta.xml +42 -0
  63. package/src/force-app/main/default/objects/Agent__c/fields/Territory__c.field-meta.xml +42 -0
  64. package/src/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +67 -0
  65. package/src/force-app/main/default/objects/Application__c/fields/Employment__c.field-meta.xml +10 -0
  66. package/src/force-app/main/default/objects/Application__c/fields/Property__c.field-meta.xml +15 -0
  67. package/src/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +10 -0
  68. package/src/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +9 -0
  69. package/src/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +47 -0
  70. package/src/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +15 -0
  71. package/src/force-app/main/default/objects/KPI_Snapshot__c/KPI_Snapshot__c.object-meta.xml +65 -0
  72. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Previous_Month_Sales__c.field-meta.xml +12 -0
  73. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Sales_MoM_Change__c.field-meta.xml +18 -0
  74. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Snapshot_Date__c.field-meta.xml +10 -0
  75. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Properties__c.field-meta.xml +13 -0
  76. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Amount__c.field-meta.xml +12 -0
  77. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Total_Sales_Count__c.field-meta.xml +13 -0
  78. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Available__c.field-meta.xml +13 -0
  79. package/src/force-app/main/default/objects/KPI_Snapshot__c/fields/Units_Occupied__c.field-meta.xml +13 -0
  80. package/src/force-app/main/default/objects/Lease__c/Lease__c.object-meta.xml +67 -0
  81. package/src/force-app/main/default/objects/Lease__c/fields/End_Date__c.field-meta.xml +10 -0
  82. package/src/force-app/main/default/objects/Lease__c/fields/Lease_Status__c.field-meta.xml +36 -0
  83. package/src/force-app/main/default/objects/Lease__c/fields/Monthly_Rent__c.field-meta.xml +12 -0
  84. package/src/force-app/main/default/objects/Lease__c/fields/Property__c.field-meta.xml +15 -0
  85. package/src/force-app/main/default/objects/Lease__c/fields/Security_Deposit__c.field-meta.xml +12 -0
  86. package/src/force-app/main/default/objects/Lease__c/fields/Start_Date__c.field-meta.xml +10 -0
  87. package/src/force-app/main/default/objects/Lease__c/fields/Tenant__c.field-meta.xml +14 -0
  88. package/src/force-app/main/default/objects/Lease__c/validationRules/End_Date_After_Start_Date.validationRule-meta.xml +10 -0
  89. package/src/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +73 -0
  90. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +13 -0
  91. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Assigned_Worker__c.field-meta.xml +15 -0
  92. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Completed__c.field-meta.xml +11 -0
  93. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +12 -0
  94. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Est_Cost__c.field-meta.xml +13 -0
  95. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +32 -0
  96. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +15 -0
  97. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Scheduled__c.field-meta.xml +11 -0
  98. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +42 -0
  99. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Home__c.field-meta.xml +11 -0
  100. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +62 -0
  101. package/src/force-app/main/default/objects/Maintenance_Request__c/fields/User__c.field-meta.xml +15 -0
  102. package/src/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +71 -0
  103. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +12 -0
  104. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +32 -0
  105. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +13 -0
  106. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/IsActive__c.field-meta.xml +11 -0
  107. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +13 -0
  108. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +11 -0
  109. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +14 -0
  110. package/src/force-app/main/default/objects/Maintenance_Worker__c/fields/Type__c.field-meta.xml +57 -0
  111. package/src/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
  112. package/src/force-app/main/default/objects/Notification__c/fields/Is_Read__c.field-meta.xml +10 -0
  113. package/src/force-app/main/default/objects/Notification__c/fields/Message__c.field-meta.xml +11 -0
  114. package/src/force-app/main/default/objects/Notification__c/fields/Priority__c.field-meta.xml +36 -0
  115. package/src/force-app/main/default/objects/Notification__c/fields/Related_Object_Type__c.field-meta.xml +12 -0
  116. package/src/force-app/main/default/objects/Notification__c/fields/Related_Record_Id__c.field-meta.xml +12 -0
  117. package/src/force-app/main/default/objects/Notification__c/fields/Title__c.field-meta.xml +12 -0
  118. package/src/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
  119. package/src/force-app/main/default/objects/Notification__c/fields/User__c.field-meta.xml +14 -0
  120. package/src/force-app/main/default/objects/Payment__c/Payment__c.object-meta.xml +67 -0
  121. package/src/force-app/main/default/objects/Payment__c/fields/Amount__c.field-meta.xml +12 -0
  122. package/src/force-app/main/default/objects/Payment__c/fields/Lease__c.field-meta.xml +15 -0
  123. package/src/force-app/main/default/objects/Payment__c/fields/Notes__c.field-meta.xml +11 -0
  124. package/src/force-app/main/default/objects/Payment__c/fields/Payment_Date__c.field-meta.xml +10 -0
  125. package/src/force-app/main/default/objects/Payment__c/fields/Payment_Method__c.field-meta.xml +41 -0
  126. package/src/force-app/main/default/objects/Payment__c/fields/Payment_Status__c.field-meta.xml +36 -0
  127. package/src/force-app/main/default/objects/Property_Cost__c/Property_Cost__c.object-meta.xml +67 -0
  128. package/src/force-app/main/default/objects/Property_Cost__c/fields/Cost_Amount__c.field-meta.xml +12 -0
  129. package/src/force-app/main/default/objects/Property_Cost__c/fields/Cost_Category__c.field-meta.xml +56 -0
  130. package/src/force-app/main/default/objects/Property_Cost__c/fields/Cost_Date__c.field-meta.xml +11 -0
  131. package/src/force-app/main/default/objects/Property_Cost__c/fields/Description__c.field-meta.xml +12 -0
  132. package/src/force-app/main/default/objects/Property_Cost__c/fields/Property__c.field-meta.xml +15 -0
  133. package/src/force-app/main/default/objects/Property_Cost__c/fields/Vendor__c.field-meta.xml +12 -0
  134. package/src/force-app/main/default/objects/Property_Cost__c/validationRules/Cost_Amount_Limit.validationRule-meta.xml +10 -0
  135. package/src/force-app/main/default/objects/Property_Feature__c/Property_Feature__c.object-meta.xml +65 -0
  136. package/src/force-app/main/default/objects/Property_Feature__c/fields/Description__c.field-meta.xml +11 -0
  137. package/src/force-app/main/default/objects/Property_Feature__c/fields/Display_on_Listing__c.field-meta.xml +10 -0
  138. package/src/force-app/main/default/objects/Property_Feature__c/fields/Feature_Category__c.field-meta.xml +51 -0
  139. package/src/force-app/main/default/objects/Property_Feature__c/fields/Property__c.field-meta.xml +15 -0
  140. package/src/force-app/main/default/objects/Property_Image__c/Property_Image__c.object-meta.xml +65 -0
  141. package/src/force-app/main/default/objects/Property_Image__c/fields/Alt_Text__c.field-meta.xml +12 -0
  142. package/src/force-app/main/default/objects/Property_Image__c/fields/Display_Order__c.field-meta.xml +13 -0
  143. package/src/force-app/main/default/objects/Property_Image__c/fields/Image_Type__c.field-meta.xml +41 -0
  144. package/src/force-app/main/default/objects/Property_Image__c/fields/Image_URL__c.field-meta.xml +10 -0
  145. package/src/force-app/main/default/objects/Property_Image__c/fields/Property__c.field-meta.xml +15 -0
  146. package/src/force-app/main/default/objects/Property_Listing__c/Property_Listing__c.object-meta.xml +65 -0
  147. package/src/force-app/main/default/objects/Property_Listing__c/fields/Display_Order__c.field-meta.xml +13 -0
  148. package/src/force-app/main/default/objects/Property_Listing__c/fields/Featured__c.field-meta.xml +10 -0
  149. package/src/force-app/main/default/objects/Property_Listing__c/fields/Listing_Price__c.field-meta.xml +12 -0
  150. package/src/force-app/main/default/objects/Property_Listing__c/fields/Listing_Status__c.field-meta.xml +41 -0
  151. package/src/force-app/main/default/objects/Property_Listing__c/fields/Marketing_Description__c.field-meta.xml +11 -0
  152. package/src/force-app/main/default/objects/Property_Listing__c/fields/Property__c.field-meta.xml +15 -0
  153. package/src/force-app/main/default/objects/Property_Listing__c/fields/Short_Description__c.field-meta.xml +12 -0
  154. package/src/force-app/main/default/objects/Property_Management_Company__c/Property_Management_Company__c.object-meta.xml +65 -0
  155. package/src/force-app/main/default/objects/Property_Management_Company__c/fields/Active__c.field-meta.xml +10 -0
  156. package/src/force-app/main/default/objects/Property_Management_Company__c/fields/Company_Code__c.field-meta.xml +13 -0
  157. package/src/force-app/main/default/objects/Property_Management_Company__c/fields/Email__c.field-meta.xml +10 -0
  158. package/src/force-app/main/default/objects/Property_Management_Company__c/fields/Phone__c.field-meta.xml +10 -0
  159. package/src/force-app/main/default/objects/Property_Management_Company__c/fields/Primary_Contact__c.field-meta.xml +14 -0
  160. package/src/force-app/main/default/objects/Property_Owner__c/Property_Owner__c.object-meta.xml +65 -0
  161. package/src/force-app/main/default/objects/Property_Owner__c/fields/Address__c.field-meta.xml +10 -0
  162. package/src/force-app/main/default/objects/Property_Owner__c/fields/Email__c.field-meta.xml +11 -0
  163. package/src/force-app/main/default/objects/Property_Owner__c/fields/Phone__c.field-meta.xml +10 -0
  164. package/src/force-app/main/default/objects/Property_Sale__c/Property_Sale__c.object-meta.xml +67 -0
  165. package/src/force-app/main/default/objects/Property_Sale__c/fields/Buyer_Tenant__c.field-meta.xml +13 -0
  166. package/src/force-app/main/default/objects/Property_Sale__c/fields/Payment_Method__c.field-meta.xml +41 -0
  167. package/src/force-app/main/default/objects/Property_Sale__c/fields/Property__c.field-meta.xml +15 -0
  168. package/src/force-app/main/default/objects/Property_Sale__c/fields/Reference_Number__c.field-meta.xml +12 -0
  169. package/src/force-app/main/default/objects/Property_Sale__c/fields/Sale_Amount__c.field-meta.xml +12 -0
  170. package/src/force-app/main/default/objects/Property_Sale__c/fields/Sale_Date__c.field-meta.xml +10 -0
  171. package/src/force-app/main/default/objects/Property_Sale__c/fields/Sale_Status__c.field-meta.xml +36 -0
  172. package/src/force-app/main/default/objects/Property_Sale__c/fields/Sale_Type__c.field-meta.xml +51 -0
  173. package/src/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +71 -0
  174. package/src/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +13 -0
  175. package/src/force-app/main/default/objects/Property__c/fields/Agent__c.field-meta.xml +15 -0
  176. package/src/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +11 -0
  177. package/src/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +14 -0
  178. package/src/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +14 -0
  179. package/src/force-app/main/default/objects/Property__c/fields/Coordinates__c.field-meta.xml +12 -0
  180. package/src/force-app/main/default/objects/Property__c/fields/Deposit__c.field-meta.xml +13 -0
  181. package/src/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +12 -0
  182. package/src/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +38 -0
  183. package/src/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +11 -0
  184. package/src/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +14 -0
  185. package/src/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +13 -0
  186. package/src/force-app/main/default/objects/Property__c/fields/Parking__c.field-meta.xml +14 -0
  187. package/src/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +11 -0
  188. package/src/force-app/main/default/objects/Property__c/fields/Sq_Ft__c.field-meta.xml +14 -0
  189. package/src/force-app/main/default/objects/Property__c/fields/Status__c.field-meta.xml +37 -0
  190. package/src/force-app/main/default/objects/Property__c/fields/Tour_URL__c.field-meta.xml +11 -0
  191. package/src/force-app/main/default/objects/Property__c/fields/Type__c.field-meta.xml +37 -0
  192. package/src/force-app/main/default/objects/Property__c/fields/Utilities__c.field-meta.xml +38 -0
  193. package/src/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +14 -0
  194. package/src/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +67 -0
  195. package/src/force-app/main/default/objects/Tenant__c/fields/End_Date__c.field-meta.xml +11 -0
  196. package/src/force-app/main/default/objects/Tenant__c/fields/Property__c.field-meta.xml +15 -0
  197. package/src/force-app/main/default/objects/Tenant__c/fields/Start_Date__c.field-meta.xml +11 -0
  198. package/src/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +37 -0
  199. package/src/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +42 -0
  200. package/src/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +15 -0
  201. package/src/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +633 -0
  202. package/src/force-app/main/default/permissionsets/Tenant_Maintenance_Access.permissionset-meta.xml +137 -0
  203. package/src/force-app/main/default/triggers/MaintenanceRequestTrigger.trigger +5 -0
  204. package/src/force-app/main/default/triggers/MaintenanceRequestTrigger.trigger-meta.xml +5 -0
  205. package/src/force-app/main/default/triggers/TenantTrigger.trigger +8 -0
  206. package/src/force-app/main/default/triggers/TenantTrigger.trigger-meta.xml +5 -0
@@ -0,0 +1,484 @@
1
+ {
2
+ "records": [
3
+ {
4
+ "attributes": {
5
+ "type": "Property_Cost__c",
6
+ "referenceId": "PropertyCostRef1"
7
+ },
8
+ "Property__c": "@PropertyRef1",
9
+ "Cost_Category__c": "Maintenance",
10
+ "Cost_Amount__c": 150.0,
11
+ "Cost_Date__c": "2024-09-03",
12
+ "Description__c": "Kitchen faucet leak repair",
13
+ "Vendor__c": "Bay Area Plumbing Services"
14
+ },
15
+ {
16
+ "attributes": {
17
+ "type": "Property_Cost__c",
18
+ "referenceId": "PropertyCostRef2"
19
+ },
20
+ "Property__c": "@PropertyRef1",
21
+ "Cost_Category__c": "Utilities",
22
+ "Cost_Amount__c": 285.5,
23
+ "Cost_Date__c": "2024-09-01",
24
+ "Description__c": "Monthly water and sewer service",
25
+ "Vendor__c": "San Francisco Water Department"
26
+ },
27
+ {
28
+ "attributes": {
29
+ "type": "Property_Cost__c",
30
+ "referenceId": "PropertyCostRef3"
31
+ },
32
+ "Property__c": "@PropertyRef1",
33
+ "Cost_Category__c": "Insurance",
34
+ "Cost_Amount__c": 1250.0,
35
+ "Cost_Date__c": "2024-09-01",
36
+ "Description__c": "Monthly property insurance premium",
37
+ "Vendor__c": "State Farm Insurance"
38
+ },
39
+ {
40
+ "attributes": {
41
+ "type": "Property_Cost__c",
42
+ "referenceId": "PropertyCostRef4"
43
+ },
44
+ "Property__c": "@PropertyRef2",
45
+ "Cost_Category__c": "Maintenance",
46
+ "Cost_Amount__c": 200.0,
47
+ "Cost_Date__c": "2024-09-06",
48
+ "Description__c": "Bedroom electrical outlet repair",
49
+ "Vendor__c": "Golden Gate Electric"
50
+ },
51
+ {
52
+ "attributes": {
53
+ "type": "Property_Cost__c",
54
+ "referenceId": "PropertyCostRef5"
55
+ },
56
+ "Property__c": "@PropertyRef2",
57
+ "Cost_Category__c": "Utilities",
58
+ "Cost_Amount__c": 145.75,
59
+ "Cost_Date__c": "2024-09-01",
60
+ "Description__c": "Monthly gas and electric service",
61
+ "Vendor__c": "PG&E"
62
+ },
63
+ {
64
+ "attributes": {
65
+ "type": "Property_Cost__c",
66
+ "referenceId": "PropertyCostRef6"
67
+ },
68
+ "Property__c": "@PropertyRef3",
69
+ "Cost_Category__c": "Maintenance",
70
+ "Cost_Amount__c": 300.0,
71
+ "Cost_Date__c": "2024-09-10",
72
+ "Description__c": "AC unit noise diagnosis and parts",
73
+ "Vendor__c": "LA HVAC Specialists"
74
+ },
75
+ {
76
+ "attributes": {
77
+ "type": "Property_Cost__c",
78
+ "referenceId": "PropertyCostRef7"
79
+ },
80
+ "Property__c": "@PropertyRef4",
81
+ "Cost_Category__c": "Maintenance",
82
+ "Cost_Amount__c": 500.0,
83
+ "Cost_Date__c": "2024-09-08",
84
+ "Description__c": "Pre-lease general inspection and cleaning",
85
+ "Vendor__c": "Property Prep Services"
86
+ },
87
+ {
88
+ "attributes": {
89
+ "type": "Property_Cost__c",
90
+ "referenceId": "PropertyCostRef8"
91
+ },
92
+ "Property__c": "@PropertyRef5",
93
+ "Cost_Category__c": "Taxes",
94
+ "Cost_Amount__c": 2800.0,
95
+ "Cost_Date__c": "2024-09-01",
96
+ "Description__c": "Quarterly property tax payment",
97
+ "Vendor__c": "Fulton County Tax Assessor"
98
+ },
99
+ {
100
+ "attributes": {
101
+ "type": "Property_Cost__c",
102
+ "referenceId": "PropertyCostRef9"
103
+ },
104
+ "Property__c": "@PropertyRef6",
105
+ "Cost_Category__c": "Maintenance",
106
+ "Cost_Amount__c": 75.0,
107
+ "Cost_Date__c": "2024-08-30",
108
+ "Description__c": "Closet door track repair",
109
+ "Vendor__c": "West Hollywood Handyman"
110
+ },
111
+ {
112
+ "attributes": {
113
+ "type": "Property_Cost__c",
114
+ "referenceId": "PropertyCostRef10"
115
+ },
116
+ "Property__c": "@PropertyRef7",
117
+ "Cost_Category__c": "Maintenance",
118
+ "Cost_Amount__c": 400.0,
119
+ "Cost_Date__c": "2024-09-15",
120
+ "Description__c": "Exterior painting materials and supplies",
121
+ "Vendor__c": "Santa Monica Paint Supply"
122
+ },
123
+ {
124
+ "attributes": {
125
+ "type": "Property_Cost__c",
126
+ "referenceId": "PropertyCostRef11"
127
+ },
128
+ "Property__c": "@PropertyRef7",
129
+ "Cost_Category__c": "Other",
130
+ "Cost_Amount__c": 850.0,
131
+ "Cost_Date__c": "2024-09-01",
132
+ "Description__c": "Monthly HOA dues and amenities",
133
+ "Vendor__c": "Oceanview HOA Management"
134
+ },
135
+ {
136
+ "attributes": {
137
+ "type": "Property_Cost__c",
138
+ "referenceId": "PropertyCostRef12"
139
+ },
140
+ "Property__c": "@PropertyRef8",
141
+ "Cost_Category__c": "Maintenance",
142
+ "Cost_Amount__c": 250.0,
143
+ "Cost_Date__c": "2024-09-07",
144
+ "Description__c": "Garden irrigation system repair",
145
+ "Vendor__c": "Palo Alto Irrigation Solutions"
146
+ },
147
+ {
148
+ "attributes": {
149
+ "type": "Property_Cost__c",
150
+ "referenceId": "PropertyCostRef13"
151
+ },
152
+ "Property__c": "@PropertyRef9",
153
+ "Cost_Category__c": "Maintenance",
154
+ "Cost_Amount__c": 350.0,
155
+ "Cost_Date__c": "2024-09-11",
156
+ "Description__c": "Hardwood floor refinishing estimate",
157
+ "Vendor__c": "Telegraph Hill Flooring"
158
+ },
159
+ {
160
+ "attributes": {
161
+ "type": "Property_Cost__c",
162
+ "referenceId": "PropertyCostRef14"
163
+ },
164
+ "Property__c": "@PropertyRef10",
165
+ "Cost_Category__c": "Maintenance",
166
+ "Cost_Amount__c": 450.0,
167
+ "Cost_Date__c": "2024-08-27",
168
+ "Description__c": "Post-tenant deep cleaning service",
169
+ "Vendor__c": "Marina District Cleaning Co"
170
+ },
171
+ {
172
+ "attributes": {
173
+ "type": "Property_Cost__c",
174
+ "referenceId": "PropertyCostRef15"
175
+ },
176
+ "Property__c": "@PropertyRef11",
177
+ "Cost_Category__c": "Maintenance",
178
+ "Cost_Amount__c": 800.0,
179
+ "Cost_Date__c": "2024-09-14",
180
+ "Description__c": "Roof inspection and tile securing",
181
+ "Vendor__c": "Beverly Hills Roofing Company"
182
+ },
183
+ {
184
+ "attributes": {
185
+ "type": "Property_Cost__c",
186
+ "referenceId": "PropertyCostRef16"
187
+ },
188
+ "Property__c": "@PropertyRef11",
189
+ "Cost_Category__c": "Taxes",
190
+ "Cost_Amount__c": 15000.0,
191
+ "Cost_Date__c": "2024-09-01",
192
+ "Description__c": "Quarterly property tax - luxury property",
193
+ "Vendor__c": "Los Angeles County Assessor"
194
+ },
195
+ {
196
+ "attributes": {
197
+ "type": "Property_Cost__c",
198
+ "referenceId": "PropertyCostRef17"
199
+ },
200
+ "Property__c": "@PropertyRef12",
201
+ "Cost_Category__c": "Maintenance",
202
+ "Cost_Amount__c": 600.0,
203
+ "Cost_Date__c": "2024-09-09",
204
+ "Description__c": "Security system upgrade and maintenance",
205
+ "Vendor__c": "Downtown Security Solutions"
206
+ },
207
+ {
208
+ "attributes": {
209
+ "type": "Property_Cost__c",
210
+ "referenceId": "PropertyCostRef18"
211
+ },
212
+ "Property__c": "@PropertyRef12",
213
+ "Cost_Category__c": "Utilities",
214
+ "Cost_Amount__c": 750.0,
215
+ "Cost_Date__c": "2024-09-01",
216
+ "Description__c": "Monthly commercial building utilities",
217
+ "Vendor__c": "PG&E Commercial Services"
218
+ },
219
+ {
220
+ "attributes": {
221
+ "type": "Property_Cost__c",
222
+ "referenceId": "PropertyCostRef19"
223
+ },
224
+ "Property__c": "@PropertyRef13",
225
+ "Cost_Category__c": "Maintenance",
226
+ "Cost_Amount__c": 120.0,
227
+ "Cost_Date__c": "2024-09-04",
228
+ "Description__c": "Front door lock replacement",
229
+ "Vendor__c": "Napa Valley Locksmith"
230
+ },
231
+ {
232
+ "attributes": {
233
+ "type": "Property_Cost__c",
234
+ "referenceId": "PropertyCostRef20"
235
+ },
236
+ "Property__c": "@PropertyRef14",
237
+ "Cost_Category__c": "Maintenance",
238
+ "Cost_Amount__c": 280.0,
239
+ "Cost_Date__c": "2024-09-13",
240
+ "Description__c": "Bathroom tile replacement materials",
241
+ "Vendor__c": "Mountain View Tile Supply"
242
+ },
243
+ {
244
+ "attributes": {
245
+ "type": "Property_Cost__c",
246
+ "referenceId": "PropertyCostRef21"
247
+ },
248
+ "Property__c": "@PropertyRef15",
249
+ "Cost_Category__c": "Maintenance",
250
+ "Cost_Amount__c": 90.0,
251
+ "Cost_Date__c": "2024-08-22",
252
+ "Description__c": "Window screen replacement",
253
+ "Vendor__c": "Oakland Window Repair"
254
+ },
255
+ {
256
+ "attributes": {
257
+ "type": "Property_Cost__c",
258
+ "referenceId": "PropertyCostRef22"
259
+ },
260
+ "Property__c": "@PropertyRef16",
261
+ "Cost_Category__c": "Maintenance",
262
+ "Cost_Amount__c": 200.0,
263
+ "Cost_Date__c": "2024-08-16",
264
+ "Description__c": "Quarterly pest control treatment",
265
+ "Vendor__c": "Bay Area Pest Solutions"
266
+ },
267
+ {
268
+ "attributes": {
269
+ "type": "Property_Cost__c",
270
+ "referenceId": "PropertyCostRef23"
271
+ },
272
+ "Property__c": "@PropertyRef16",
273
+ "Cost_Category__c": "Other",
274
+ "Cost_Amount__c": 1200.0,
275
+ "Cost_Date__c": "2024-09-01",
276
+ "Description__c": "Luxury high-rise monthly HOA fees",
277
+ "Vendor__c": "SOMA Luxury Living HOA"
278
+ },
279
+ {
280
+ "attributes": {
281
+ "type": "Property_Cost__c",
282
+ "referenceId": "PropertyCostRef24"
283
+ },
284
+ "Property__c": "@PropertyRef17",
285
+ "Cost_Category__c": "Maintenance",
286
+ "Cost_Amount__c": 300.0,
287
+ "Cost_Date__c": "2024-09-01",
288
+ "Description__c": "Monthly elevator maintenance contract",
289
+ "Vendor__c": "Redwood City Elevator Services"
290
+ },
291
+ {
292
+ "attributes": {
293
+ "type": "Property_Cost__c",
294
+ "referenceId": "PropertyCostRef25"
295
+ },
296
+ "Property__c": "@PropertyRef18",
297
+ "Cost_Category__c": "Maintenance",
298
+ "Cost_Amount__c": 100.0,
299
+ "Cost_Date__c": "2024-09-16",
300
+ "Description__c": "Weekly pool maintenance and chemicals",
301
+ "Vendor__c": "Mission Bay Pool Services"
302
+ },
303
+ {
304
+ "attributes": {
305
+ "type": "Property_Cost__c",
306
+ "referenceId": "PropertyCostRef26"
307
+ },
308
+ "Property__c": "@PropertyRef19",
309
+ "Cost_Category__c": "Insurance",
310
+ "Cost_Amount__c": 2100.0,
311
+ "Cost_Date__c": "2024-09-01",
312
+ "Description__c": "Monthly luxury condo insurance premium",
313
+ "Vendor__c": "Allstate Premium Coverage"
314
+ },
315
+ {
316
+ "attributes": {
317
+ "type": "Property_Cost__c",
318
+ "referenceId": "PropertyCostRef27"
319
+ },
320
+ "Property__c": "@PropertyRef20",
321
+ "Cost_Category__c": "Repair",
322
+ "Cost_Amount__c": 25000.0,
323
+ "Cost_Date__c": "2024-09-01",
324
+ "Description__c": "Victorian restoration project - Phase 1",
325
+ "Vendor__c": "Historic Home Restoration SF"
326
+ },
327
+ {
328
+ "attributes": {
329
+ "type": "Property_Cost__c",
330
+ "referenceId": "PropertyCostRef28"
331
+ },
332
+ "Property__c": "@PropertyRef21",
333
+ "Cost_Category__c": "Utilities",
334
+ "Cost_Amount__c": 185.0,
335
+ "Cost_Date__c": "2024-09-01",
336
+ "Description__c": "Monthly utilities - bay view apartment",
337
+ "Vendor__c": "SF Department of Public Utilities"
338
+ },
339
+ {
340
+ "attributes": {
341
+ "type": "Property_Cost__c",
342
+ "referenceId": "PropertyCostRef29"
343
+ },
344
+ "Property__c": "@PropertyRef22",
345
+ "Cost_Category__c": "Taxes",
346
+ "Cost_Amount__c": 1850.0,
347
+ "Cost_Date__c": "2024-09-01",
348
+ "Description__c": "Quarterly property tax - Berkeley townhouse",
349
+ "Vendor__c": "Alameda County Tax Collector"
350
+ },
351
+ {
352
+ "attributes": {
353
+ "type": "Property_Cost__c",
354
+ "referenceId": "PropertyCostRef30"
355
+ },
356
+ "Property__c": "@PropertyRef23",
357
+ "Cost_Category__c": "Utilities",
358
+ "Cost_Amount__c": 1200.0,
359
+ "Cost_Date__c": "2024-09-01",
360
+ "Description__c": "Monthly utilities - large office space",
361
+ "Vendor__c": "PG&E Commercial Division"
362
+ },
363
+ {
364
+ "attributes": {
365
+ "type": "Property_Cost__c",
366
+ "referenceId": "PropertyCostRef31"
367
+ },
368
+ "Property__c": "@PropertyRef23",
369
+ "Cost_Category__c": "Maintenance",
370
+ "Cost_Amount__c": 80.0,
371
+ "Cost_Date__c": "2024-09-02",
372
+ "Description__c": "Monthly HVAC filter replacement",
373
+ "Vendor__c": "SOMA Office Maintenance"
374
+ },
375
+ {
376
+ "attributes": {
377
+ "type": "Property_Cost__c",
378
+ "referenceId": "PropertyCostRef32"
379
+ },
380
+ "Property__c": "@PropertyRef24",
381
+ "Cost_Category__c": "Maintenance",
382
+ "Cost_Amount__c": 180.0,
383
+ "Cost_Date__c": "2024-09-17",
384
+ "Description__c": "Annual gutter cleaning service",
385
+ "Vendor__c": "Sunset District Home Care"
386
+ },
387
+ {
388
+ "attributes": {
389
+ "type": "Property_Cost__c",
390
+ "referenceId": "PropertyCostRef33"
391
+ },
392
+ "Property__c": "@PropertyRef25",
393
+ "Cost_Category__c": "Maintenance",
394
+ "Cost_Amount__c": 200.0,
395
+ "Cost_Date__c": "2024-09-15",
396
+ "Description__c": "Washer/dryer installation and setup",
397
+ "Vendor__c": "Mission Bay Appliance Install"
398
+ },
399
+ {
400
+ "attributes": {
401
+ "type": "Property_Cost__c",
402
+ "referenceId": "PropertyCostRef34"
403
+ },
404
+ "Property__c": "@PropertyRef1",
405
+ "Cost_Category__c": "Utilities",
406
+ "Cost_Amount__c": 295.75,
407
+ "Cost_Date__c": "2024-08-01",
408
+ "Description__c": "Previous month water and sewer",
409
+ "Vendor__c": "San Francisco Water Department"
410
+ },
411
+ {
412
+ "attributes": {
413
+ "type": "Property_Cost__c",
414
+ "referenceId": "PropertyCostRef35"
415
+ },
416
+ "Property__c": "@PropertyRef2",
417
+ "Cost_Category__c": "Utilities",
418
+ "Cost_Amount__c": 155.25,
419
+ "Cost_Date__c": "2024-08-01",
420
+ "Description__c": "Previous month gas and electric",
421
+ "Vendor__c": "PG&E"
422
+ },
423
+ {
424
+ "attributes": {
425
+ "type": "Property_Cost__c",
426
+ "referenceId": "PropertyCostRef36"
427
+ },
428
+ "Property__c": "@PropertyRef5",
429
+ "Cost_Category__c": "Taxes",
430
+ "Cost_Amount__c": 2750.0,
431
+ "Cost_Date__c": "2024-06-01",
432
+ "Description__c": "Q2 property tax payment",
433
+ "Vendor__c": "Fulton County Tax Assessor"
434
+ },
435
+ {
436
+ "attributes": {
437
+ "type": "Property_Cost__c",
438
+ "referenceId": "PropertyCostRef37"
439
+ },
440
+ "Property__c": "@PropertyRef11",
441
+ "Cost_Category__c": "Insurance",
442
+ "Cost_Amount__c": 3500.0,
443
+ "Cost_Date__c": "2024-09-01",
444
+ "Description__c": "Monthly luxury property insurance",
445
+ "Vendor__c": "Chubb Premium Insurance"
446
+ },
447
+ {
448
+ "attributes": {
449
+ "type": "Property_Cost__c",
450
+ "referenceId": "PropertyCostRef38"
451
+ },
452
+ "Property__c": "@PropertyRef12",
453
+ "Cost_Category__c": "Taxes",
454
+ "Cost_Amount__c": 8500.0,
455
+ "Cost_Date__c": "2024-09-01",
456
+ "Description__c": "Quarterly commercial property tax",
457
+ "Vendor__c": "San Francisco Tax Collector"
458
+ },
459
+ {
460
+ "attributes": {
461
+ "type": "Property_Cost__c",
462
+ "referenceId": "PropertyCostRef39"
463
+ },
464
+ "Property__c": "@PropertyRef16",
465
+ "Cost_Category__c": "Insurance",
466
+ "Cost_Amount__c": 2800.0,
467
+ "Cost_Date__c": "2024-09-01",
468
+ "Description__c": "Monthly high-rise condo insurance",
469
+ "Vendor__c": "Travelers Elite Coverage"
470
+ },
471
+ {
472
+ "attributes": {
473
+ "type": "Property_Cost__c",
474
+ "referenceId": "PropertyCostRef40"
475
+ },
476
+ "Property__c": "@PropertyRef23",
477
+ "Cost_Category__c": "Taxes",
478
+ "Cost_Amount__c": 12000.0,
479
+ "Cost_Date__c": "2024-09-01",
480
+ "Description__c": "Quarterly commercial office tax",
481
+ "Vendor__c": "San Francisco Commercial Assessment"
482
+ }
483
+ ]
484
+ }
@@ -0,0 +1,169 @@
1
+ {
2
+ "records": [
3
+ {
4
+ "attributes": {
5
+ "type": "Property_Feature__c",
6
+ "referenceId": "FeatureRef1"
7
+ },
8
+ "Name": "Feature-001",
9
+ "Property__c": "@PropertyRef1",
10
+ "Feature_Category__c": "Amenities",
11
+ "Description__c": "In-unit washer and dryer",
12
+ "Display_on_Listing__c": true
13
+ },
14
+ {
15
+ "attributes": {
16
+ "type": "Property_Feature__c",
17
+ "referenceId": "FeatureRef2"
18
+ },
19
+ "Name": "Feature-002",
20
+ "Property__c": "@PropertyRef1",
21
+ "Feature_Category__c": "Safety and Security",
22
+ "Description__c": "24/7 security system",
23
+ "Display_on_Listing__c": true
24
+ },
25
+ {
26
+ "attributes": {
27
+ "type": "Property_Feature__c",
28
+ "referenceId": "FeatureRef3"
29
+ },
30
+ "Name": "Feature-003",
31
+ "Property__c": "@PropertyRef2",
32
+ "Feature_Category__c": "Location",
33
+ "Description__c": "Panoramic ocean views",
34
+ "Display_on_Listing__c": true
35
+ },
36
+ {
37
+ "attributes": {
38
+ "type": "Property_Feature__c",
39
+ "referenceId": "FeatureRef4"
40
+ },
41
+ "Name": "Feature-004",
42
+ "Property__c": "@PropertyRef4",
43
+ "Feature_Category__c": "Amenities",
44
+ "Description__c": "Infinity pool with city views",
45
+ "Display_on_Listing__c": true
46
+ },
47
+ {
48
+ "attributes": {
49
+ "type": "Property_Feature__c",
50
+ "referenceId": "FeatureRef5"
51
+ },
52
+ "Name": "Feature-005",
53
+ "Property__c": "@PropertyRef4",
54
+ "Feature_Category__c": "Exterior",
55
+ "Description__c": "3-car garage with electric charging",
56
+ "Display_on_Listing__c": false
57
+ },
58
+ {
59
+ "attributes": {
60
+ "type": "Property_Feature__c",
61
+ "referenceId": "FeatureRef6"
62
+ },
63
+ "Name": "Feature-006",
64
+ "Property__c": "@PropertyRef1",
65
+ "Feature_Category__c": "Appliances",
66
+ "Description__c": "Granite countertops with waterfall edge",
67
+ "Display_on_Listing__c": true
68
+ },
69
+ {
70
+ "attributes": {
71
+ "type": "Property_Feature__c",
72
+ "referenceId": "FeatureRef7"
73
+ },
74
+ "Name": "Feature-007",
75
+ "Property__c": "@PropertyRef1",
76
+ "Feature_Category__c": "Appliances",
77
+ "Description__c": "Stainless steel appliances including double oven",
78
+ "Display_on_Listing__c": true
79
+ },
80
+ {
81
+ "attributes": {
82
+ "type": "Property_Feature__c",
83
+ "referenceId": "FeatureRef8"
84
+ },
85
+ "Name": "Feature-008",
86
+ "Property__c": "@PropertyRef2",
87
+ "Feature_Category__c": "Interior",
88
+ "Description__c": "Exposed brick accent walls",
89
+ "Display_on_Listing__c": true
90
+ },
91
+ {
92
+ "attributes": {
93
+ "type": "Property_Feature__c",
94
+ "referenceId": "FeatureRef9"
95
+ },
96
+ "Name": "Feature-009",
97
+ "Property__c": "@PropertyRef2",
98
+ "Feature_Category__c": "Amenities",
99
+ "Description__c": "Smart home automation system",
100
+ "Display_on_Listing__c": true
101
+ },
102
+ {
103
+ "attributes": {
104
+ "type": "Property_Feature__c",
105
+ "referenceId": "FeatureRef10"
106
+ },
107
+ "Name": "Feature-010",
108
+ "Property__c": "@PropertyRef7",
109
+ "Feature_Category__c": "Exterior",
110
+ "Description__c": "Direct beach access with private pathway",
111
+ "Display_on_Listing__c": true
112
+ },
113
+ {
114
+ "attributes": {
115
+ "type": "Property_Feature__c",
116
+ "referenceId": "FeatureRef11"
117
+ },
118
+ "Name": "Feature-011",
119
+ "Property__c": "@PropertyRef7",
120
+ "Feature_Category__c": "Amenities",
121
+ "Description__c": "Infinity pool overlooking the ocean",
122
+ "Display_on_Listing__c": true
123
+ },
124
+ {
125
+ "attributes": {
126
+ "type": "Property_Feature__c",
127
+ "referenceId": "FeatureRef12"
128
+ },
129
+ "Name": "Feature-012",
130
+ "Property__c": "@PropertyRef8",
131
+ "Feature_Category__c": "Amenities",
132
+ "Description__c": "Smart home system with voice control",
133
+ "Display_on_Listing__c": true
134
+ },
135
+ {
136
+ "attributes": {
137
+ "type": "Property_Feature__c",
138
+ "referenceId": "FeatureRef13"
139
+ },
140
+ "Name": "Feature-013",
141
+ "Property__c": "@PropertyRef9",
142
+ "Feature_Category__c": "Interior",
143
+ "Description__c": "Original Victorian architectural details",
144
+ "Display_on_Listing__c": true
145
+ },
146
+ {
147
+ "attributes": {
148
+ "type": "Property_Feature__c",
149
+ "referenceId": "FeatureRef14"
150
+ },
151
+ "Name": "Feature-014",
152
+ "Property__c": "@PropertyRef11",
153
+ "Feature_Category__c": "Amenities",
154
+ "Description__c": "Private tennis court with professional lighting",
155
+ "Display_on_Listing__c": true
156
+ },
157
+ {
158
+ "attributes": {
159
+ "type": "Property_Feature__c",
160
+ "referenceId": "FeatureRef15"
161
+ },
162
+ "Name": "Feature-015",
163
+ "Property__c": "@PropertyRef11",
164
+ "Feature_Category__c": "Interior",
165
+ "Description__c": "Home theater with surround sound system",
166
+ "Display_on_Listing__c": true
167
+ }
168
+ ]
169
+ }