@salesforce/webapp-template-app-react-b2e-experimental 1.35.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 (144) hide show
  1. package/LICENSE.txt +82 -0
  2. package/dist/.a4drules/build-validation.md +81 -0
  3. package/dist/.a4drules/code-quality.md +150 -0
  4. package/dist/.a4drules/graphql/tools/knowledge/lds-explore-graphql-schema.md +227 -0
  5. package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-mutationquery.md +212 -0
  6. package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-readquery.md +185 -0
  7. package/dist/.a4drules/graphql/tools/knowledge/lds-guide-graphql.md +205 -0
  8. package/dist/.a4drules/graphql/tools/schemas/shared.graphqls +1150 -0
  9. package/dist/.a4drules/graphql.md +408 -0
  10. package/dist/.a4drules/images.md +13 -0
  11. package/dist/.a4drules/react.md +361 -0
  12. package/dist/.a4drules/react_image_processing.md +45 -0
  13. package/dist/.a4drules/skills/install-feature/SKILL.md +67 -0
  14. package/dist/.a4drules/skills/install-feature/scripts/copy-feature-assets.sh +36 -0
  15. package/dist/.a4drules/typescript.md +224 -0
  16. package/dist/.forceignore +15 -0
  17. package/dist/.husky/pre-commit +4 -0
  18. package/dist/.prettierignore +11 -0
  19. package/dist/.prettierrc +17 -0
  20. package/dist/CHANGELOG.md +479 -0
  21. package/dist/README.md +18 -0
  22. package/dist/config/project-scratch-def.json +13 -0
  23. package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +26 -0
  24. package/dist/force-app/main/default/data/Application__c.json +124 -0
  25. package/dist/force-app/main/default/data/Maintenance_Request__c.json +514 -0
  26. package/dist/force-app/main/default/data/Maintenance_Worker__c.json +304 -0
  27. package/dist/force-app/main/default/data/Notification__c.json +214 -0
  28. package/dist/force-app/main/default/data/Property__c.json +654 -0
  29. package/dist/force-app/main/default/data/Tenant__c.json +184 -0
  30. package/dist/force-app/main/default/data/data-plan.json +38 -0
  31. package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +67 -0
  32. package/dist/force-app/main/default/objects/Application__c/fields/Employment__c.field-meta.xml +10 -0
  33. package/dist/force-app/main/default/objects/Application__c/fields/Property__c.field-meta.xml +15 -0
  34. package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +10 -0
  35. package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +9 -0
  36. package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +42 -0
  37. package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +15 -0
  38. package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +67 -0
  39. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +13 -0
  40. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Completed__c.field-meta.xml +11 -0
  41. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +12 -0
  42. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Est_Cost__c.field-meta.xml +13 -0
  43. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +32 -0
  44. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +15 -0
  45. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Scheduled__c.field-meta.xml +11 -0
  46. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +42 -0
  47. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Home__c.field-meta.xml +11 -0
  48. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +42 -0
  49. package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/User__c.field-meta.xml +15 -0
  50. package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +66 -0
  51. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +12 -0
  52. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +32 -0
  53. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +13 -0
  54. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/IsActive__c.field-meta.xml +11 -0
  55. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +13 -0
  56. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +11 -0
  57. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +14 -0
  58. package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Type__c.field-meta.xml +57 -0
  59. package/dist/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
  60. package/dist/force-app/main/default/objects/Notification__c/fields/Is_Read__c.field-meta.xml +10 -0
  61. package/dist/force-app/main/default/objects/Notification__c/fields/Message__c.field-meta.xml +11 -0
  62. package/dist/force-app/main/default/objects/Notification__c/fields/Priority__c.field-meta.xml +36 -0
  63. package/dist/force-app/main/default/objects/Notification__c/fields/Related_Object_Type__c.field-meta.xml +12 -0
  64. package/dist/force-app/main/default/objects/Notification__c/fields/Related_Record_Id__c.field-meta.xml +12 -0
  65. package/dist/force-app/main/default/objects/Notification__c/fields/Title__c.field-meta.xml +12 -0
  66. package/dist/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
  67. package/dist/force-app/main/default/objects/Notification__c/fields/User__c.field-meta.xml +14 -0
  68. package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +66 -0
  69. package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +13 -0
  70. package/dist/force-app/main/default/objects/Property__c/fields/Agent__c.field-meta.xml +15 -0
  71. package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +11 -0
  72. package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +14 -0
  73. package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +14 -0
  74. package/dist/force-app/main/default/objects/Property__c/fields/Deposit__c.field-meta.xml +13 -0
  75. package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +12 -0
  76. package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +38 -0
  77. package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +11 -0
  78. package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +14 -0
  79. package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +13 -0
  80. package/dist/force-app/main/default/objects/Property__c/fields/Parking__c.field-meta.xml +14 -0
  81. package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +11 -0
  82. package/dist/force-app/main/default/objects/Property__c/fields/Sq_Ft__c.field-meta.xml +14 -0
  83. package/dist/force-app/main/default/objects/Property__c/fields/Status__c.field-meta.xml +37 -0
  84. package/dist/force-app/main/default/objects/Property__c/fields/Tour_URL__c.field-meta.xml +11 -0
  85. package/dist/force-app/main/default/objects/Property__c/fields/Type__c.field-meta.xml +37 -0
  86. package/dist/force-app/main/default/objects/Property__c/fields/Utilities__c.field-meta.xml +38 -0
  87. package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +14 -0
  88. package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +67 -0
  89. package/dist/force-app/main/default/objects/Tenant__c/fields/End_Date__c.field-meta.xml +11 -0
  90. package/dist/force-app/main/default/objects/Tenant__c/fields/Property__c.field-meta.xml +15 -0
  91. package/dist/force-app/main/default/objects/Tenant__c/fields/Start_Date__c.field-meta.xml +11 -0
  92. package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +37 -0
  93. package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +42 -0
  94. package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +15 -0
  95. package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +453 -0
  96. package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +6 -0
  97. package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +7 -0
  98. package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +6 -0
  99. package/dist/force-app/main/default/tabs/Notification__c.tab-meta.xml +6 -0
  100. package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +7 -0
  101. package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +7 -0
  102. package/dist/force-app/main/default/webapplications/appreactb2e/.prettierignore +9 -0
  103. package/dist/force-app/main/default/webapplications/appreactb2e/.prettierrc +11 -0
  104. package/dist/force-app/main/default/webapplications/appreactb2e/appreactb2e.webapplication-meta.xml +7 -0
  105. package/dist/force-app/main/default/webapplications/appreactb2e/build/vite.config.d.ts +2 -0
  106. package/dist/force-app/main/default/webapplications/appreactb2e/build/vite.config.js +76 -0
  107. package/dist/force-app/main/default/webapplications/appreactb2e/e2e/app.spec.ts +24 -0
  108. package/dist/force-app/main/default/webapplications/appreactb2e/eslint.config.js +113 -0
  109. package/dist/force-app/main/default/webapplications/appreactb2e/index.html +13 -0
  110. package/dist/force-app/main/default/webapplications/appreactb2e/package-lock.json +7157 -0
  111. package/dist/force-app/main/default/webapplications/appreactb2e/package.json +45 -0
  112. package/dist/force-app/main/default/webapplications/appreactb2e/playwright.config.ts +24 -0
  113. package/dist/force-app/main/default/webapplications/appreactb2e/scripts/rewrite-e2e-assets.mjs +23 -0
  114. package/dist/force-app/main/default/webapplications/appreactb2e/src/api/graphql-operations-types.ts +127 -0
  115. package/dist/force-app/main/default/webapplications/appreactb2e/src/api/utils/query/highRevenueAccountsQuery.graphql +29 -0
  116. package/dist/force-app/main/default/webapplications/appreactb2e/src/app.tsx +22 -0
  117. package/dist/force-app/main/default/webapplications/appreactb2e/src/appLayout.tsx +29 -0
  118. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/book.svg +3 -0
  119. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/copy.svg +4 -0
  120. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/rocket.svg +3 -0
  121. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/icons/star.svg +3 -0
  122. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-1.png +0 -0
  123. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-2.png +0 -0
  124. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/codey-3.png +0 -0
  125. package/dist/force-app/main/default/webapplications/appreactb2e/src/assets/images/vibe-codey.svg +194 -0
  126. package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/About.tsx +12 -0
  127. package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/Home.tsx +12 -0
  128. package/dist/force-app/main/default/webapplications/appreactb2e/src/pages/NotFound.tsx +18 -0
  129. package/dist/force-app/main/default/webapplications/appreactb2e/src/routes.tsx +28 -0
  130. package/dist/force-app/main/default/webapplications/appreactb2e/src/styles/global.css +13 -0
  131. package/dist/force-app/main/default/webapplications/appreactb2e/tsconfig.json +36 -0
  132. package/dist/force-app/main/default/webapplications/appreactb2e/tsconfig.node.json +13 -0
  133. package/dist/force-app/main/default/webapplications/appreactb2e/vite-env.d.ts +1 -0
  134. package/dist/force-app/main/default/webapplications/appreactb2e/vite.config.ts +85 -0
  135. package/dist/force-app/main/default/webapplications/appreactb2e/vitest-env.d.ts +2 -0
  136. package/dist/force-app/main/default/webapplications/appreactb2e/vitest.config.ts +11 -0
  137. package/dist/force-app/main/default/webapplications/appreactb2e/vitest.setup.ts +1 -0
  138. package/dist/force-app/main/default/webapplications/appreactb2e/webapplication.json +7 -0
  139. package/dist/jest.config.js +6 -0
  140. package/dist/package.json +37 -0
  141. package/dist/scripts/apex/hello.apex +10 -0
  142. package/dist/scripts/soql/account.soql +6 -0
  143. package/dist/sfdx-project.json +12 -0
  144. package/package.json +34 -0
@@ -0,0 +1,654 @@
1
+ {
2
+ "records": [
3
+ {
4
+ "attributes": {
5
+ "type": "Property__c",
6
+ "referenceId": "PropertyRef1"
7
+ },
8
+ "Name": "Sunset Boulevard Apartment 4B",
9
+ "Address__c": "1234 Sunset Blvd, Unit 4B, Los Angeles, CA 90028",
10
+ "Type__c": "Apartment",
11
+ "Sq_Ft__c": 850,
12
+ "Status__c": "Rented",
13
+ "Bedrooms__c": 2,
14
+ "Bathrooms__c": 1,
15
+ "Year_Built__c": 2015,
16
+ "Parking__c": 1,
17
+ "Pet_Friendly__c": true,
18
+ "Features__c": "Balcony;In-unit Laundry;AC",
19
+ "Monthly_Rent__c": 2200,
20
+ "Deposit__c": 2200,
21
+ "Available_Date__c": null,
22
+ "Lease_Term__c": 12,
23
+ "Utilities__c": "Water;Electricity",
24
+ "Description__c": "Modern 2-bedroom apartment with stunning city views. Features include balcony, in-unit washer/dryer, and central AC. Great location near restaurants and shopping.",
25
+ "Tour_URL__c": "https://example.com/tour/sunset-4b",
26
+ "Hero_Image__c": "https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=800",
27
+ "Agent__c": null
28
+ },
29
+ {
30
+ "attributes": {
31
+ "type": "Property__c",
32
+ "referenceId": "PropertyRef2"
33
+ },
34
+ "Name": "Downtown Loft 501",
35
+ "Address__c": "789 Downtown St, Unit 501, Los Angeles, CA 90014",
36
+ "Type__c": "Apartment",
37
+ "Sq_Ft__c": 1400,
38
+ "Status__c": "Rented",
39
+ "Bedrooms__c": 2,
40
+ "Bathrooms__c": 2,
41
+ "Year_Built__c": 2016,
42
+ "Parking__c": 2,
43
+ "Pet_Friendly__c": true,
44
+ "Features__c": "Hardwood Floors;Gym;Pool",
45
+ "Monthly_Rent__c": 2800,
46
+ "Deposit__c": 2800,
47
+ "Available_Date__c": null,
48
+ "Lease_Term__c": 12,
49
+ "Utilities__c": "Water;Gas",
50
+ "Description__c": "Spacious downtown loft with high ceilings and modern finishes. Building amenities include gym, pool, and secured parking.",
51
+ "Tour_URL__c": "https://example.com/tour/downtown-loft",
52
+ "Hero_Image__c": "https://images.unsplash.com/photo-1502672260066-6bc04e62c4ba?w=800",
53
+ "Agent__c": null
54
+ },
55
+ {
56
+ "attributes": {
57
+ "type": "Property__c",
58
+ "referenceId": "PropertyRef3"
59
+ },
60
+ "Name": "Garden Studio A12",
61
+ "Address__c": "321 Garden St, Unit A12, Burbank, CA 91502",
62
+ "Type__c": "Apartment",
63
+ "Sq_Ft__c": 950,
64
+ "Status__c": "Rented",
65
+ "Bedrooms__c": 1,
66
+ "Bathrooms__c": 1,
67
+ "Year_Built__c": 2014,
68
+ "Parking__c": 1,
69
+ "Pet_Friendly__c": false,
70
+ "Features__c": "Balcony;Storage Unit",
71
+ "Monthly_Rent__c": 1800,
72
+ "Deposit__c": 1800,
73
+ "Available_Date__c": null,
74
+ "Lease_Term__c": 12,
75
+ "Utilities__c": "Water",
76
+ "Description__c": "Cozy garden studio in quiet neighborhood. Features private balcony and additional storage unit. No pets allowed.",
77
+ "Tour_URL__c": null,
78
+ "Hero_Image__c": "https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?w=800",
79
+ "Agent__c": null
80
+ },
81
+ {
82
+ "attributes": {
83
+ "type": "Property__c",
84
+ "referenceId": "PropertyRef4"
85
+ },
86
+ "Name": "Luxury Penthouse 2600",
87
+ "Address__c": "950 East Paces Ferry Rd NE #2600, Atlanta, GA 30326",
88
+ "Type__c": "Condo",
89
+ "Sq_Ft__c": 2400,
90
+ "Status__c": "Maintenance",
91
+ "Bedrooms__c": 3,
92
+ "Bathrooms__c": 3,
93
+ "Year_Built__c": 2019,
94
+ "Parking__c": 2,
95
+ "Pet_Friendly__c": true,
96
+ "Features__c": "Balcony;Gym;Pool;Concierge",
97
+ "Monthly_Rent__c": 6250,
98
+ "Deposit__c": 12500,
99
+ "Available_Date__c": "2024-12-15",
100
+ "Lease_Term__c": 12,
101
+ "Utilities__c": "Water;Gas;Trash",
102
+ "Description__c": "Elegant 3-bedroom penthouse in gated community with luxury amenities. Currently under maintenance, available mid-December.",
103
+ "Tour_URL__c": "https://example.com/tour/luxury-penthouse",
104
+ "Hero_Image__c": "https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=800",
105
+ "Agent__c": null
106
+ },
107
+ {
108
+ "attributes": {
109
+ "type": "Property__c",
110
+ "referenceId": "PropertyRef5"
111
+ },
112
+ "Name": "Sunset Towers Unit 403",
113
+ "Address__c": "8250 Sunset Blvd, Unit 403, West Hollywood, CA 90046",
114
+ "Type__c": "Apartment",
115
+ "Sq_Ft__c": 1200,
116
+ "Status__c": "Available",
117
+ "Bedrooms__c": 2,
118
+ "Bathrooms__c": 2,
119
+ "Year_Built__c": 2017,
120
+ "Parking__c": 1,
121
+ "Pet_Friendly__c": true,
122
+ "Features__c": "Balcony;In-unit Laundry;Doorman",
123
+ "Monthly_Rent__c": 4200,
124
+ "Deposit__c": 4200,
125
+ "Available_Date__c": "2024-12-01",
126
+ "Lease_Term__c": 12,
127
+ "Utilities__c": "Water;Trash",
128
+ "Description__c": "Modern high-rise apartment with floor-to-ceiling windows and stunning sunset views. Building features 24/7 doorman.",
129
+ "Tour_URL__c": "https://example.com/tour/sunset-towers",
130
+ "Hero_Image__c": "https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=800",
131
+ "Agent__c": null
132
+ },
133
+ {
134
+ "attributes": {
135
+ "type": "Property__c",
136
+ "referenceId": "PropertyRef6"
137
+ },
138
+ "Name": "Ocean View Villa",
139
+ "Address__c": "1247 Ocean Blvd, Santa Monica, CA 90401",
140
+ "Type__c": "Single Family",
141
+ "Sq_Ft__c": 4200,
142
+ "Status__c": "Available",
143
+ "Bedrooms__c": 5,
144
+ "Bathrooms__c": 4,
145
+ "Year_Built__c": 2021,
146
+ "Parking__c": 3,
147
+ "Pet_Friendly__c": true,
148
+ "Features__c": "Pool;Gym;Garden;Beach Access",
149
+ "Monthly_Rent__c": 12000,
150
+ "Deposit__c": 24000,
151
+ "Available_Date__c": "2024-12-01",
152
+ "Lease_Term__c": 24,
153
+ "Utilities__c": "None",
154
+ "Description__c": "Stunning beachfront home with direct ocean access, modern kitchen, panoramic views, and private pool. Premium property.",
155
+ "Tour_URL__c": "https://example.com/tour/ocean-villa",
156
+ "Hero_Image__c": "https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=800",
157
+ "Agent__c": null
158
+ },
159
+ {
160
+ "attributes": {
161
+ "type": "Property__c",
162
+ "referenceId": "PropertyRef7"
163
+ },
164
+ "Name": "Tech Hub Condo",
165
+ "Address__c": "2100 University Ave, Unit 15B, Palo Alto, CA 94301",
166
+ "Type__c": "Condo",
167
+ "Sq_Ft__c": 2000,
168
+ "Status__c": "Rented",
169
+ "Bedrooms__c": 3,
170
+ "Bathrooms__c": 2,
171
+ "Year_Built__c": 2019,
172
+ "Parking__c": 2,
173
+ "Pet_Friendly__c": true,
174
+ "Features__c": "Smart Home;Balcony;Gym;Pool",
175
+ "Monthly_Rent__c": 7500,
176
+ "Deposit__c": 7500,
177
+ "Available_Date__c": null,
178
+ "Lease_Term__c": 12,
179
+ "Utilities__c": "Water;Trash",
180
+ "Description__c": "Modern condo in Silicon Valley with smart home features, rooftop deck, and premium amenities. Perfect for tech professionals.",
181
+ "Tour_URL__c": "https://example.com/tour/tech-hub",
182
+ "Hero_Image__c": "https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=800",
183
+ "Agent__c": null
184
+ },
185
+ {
186
+ "attributes": {
187
+ "type": "Property__c",
188
+ "referenceId": "PropertyRef8"
189
+ },
190
+ "Name": "Historic Brownstone",
191
+ "Address__c": "456 Telegraph Hill Blvd, San Francisco, CA 94133",
192
+ "Type__c": "Single Family",
193
+ "Sq_Ft__c": 2800,
194
+ "Status__c": "Available",
195
+ "Bedrooms__c": 4,
196
+ "Bathrooms__c": 3,
197
+ "Year_Built__c": 1925,
198
+ "Parking__c": 1,
199
+ "Pet_Friendly__c": true,
200
+ "Features__c": "Hardwood Floors;Garden;Historic",
201
+ "Monthly_Rent__c": 9800,
202
+ "Deposit__c": 19600,
203
+ "Available_Date__c": "2024-12-15",
204
+ "Lease_Term__c": 12,
205
+ "Utilities__c": "None",
206
+ "Description__c": "Charming historic brownstone with original hardwood floors, exposed brick, and modern updates. Rare Telegraph Hill location.",
207
+ "Tour_URL__c": "https://example.com/tour/brownstone",
208
+ "Hero_Image__c": "https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=800",
209
+ "Agent__c": null
210
+ },
211
+ {
212
+ "attributes": {
213
+ "type": "Property__c",
214
+ "referenceId": "PropertyRef9"
215
+ },
216
+ "Name": "Marina District Studio",
217
+ "Address__c": "3300 Fillmore St, Apt 2A, San Francisco, CA 94123",
218
+ "Type__c": "Apartment",
219
+ "Sq_Ft__c": 750,
220
+ "Status__c": "Available",
221
+ "Bedrooms__c": 1,
222
+ "Bathrooms__c": 1,
223
+ "Year_Built__c": 2015,
224
+ "Parking__c": 0,
225
+ "Pet_Friendly__c": false,
226
+ "Features__c": "Hardwood Floors;AC",
227
+ "Monthly_Rent__c": 3200,
228
+ "Deposit__c": 3200,
229
+ "Available_Date__c": "2024-12-01",
230
+ "Lease_Term__c": 12,
231
+ "Utilities__c": "Water",
232
+ "Description__c": "Bright studio in trendy Marina District with city views and modern amenities. Walking distance to shops and restaurants.",
233
+ "Tour_URL__c": null,
234
+ "Hero_Image__c": "https://images.unsplash.com/photo-1502672023488-70e25813eb80?w=800",
235
+ "Agent__c": null
236
+ },
237
+ {
238
+ "attributes": {
239
+ "type": "Property__c",
240
+ "referenceId": "PropertyRef10"
241
+ },
242
+ "Name": "Beverly Hills Estate",
243
+ "Address__c": "9200 Sunset Blvd, Beverly Hills, CA 90210",
244
+ "Type__c": "Single Family",
245
+ "Sq_Ft__c": 8500,
246
+ "Status__c": "Under Renovation",
247
+ "Bedrooms__c": 7,
248
+ "Bathrooms__c": 6,
249
+ "Year_Built__c": 2020,
250
+ "Parking__c": 4,
251
+ "Pet_Friendly__c": true,
252
+ "Features__c": "Pool;Gym;Garden;Wine Cellar;Tennis Court",
253
+ "Monthly_Rent__c": 25000,
254
+ "Deposit__c": 50000,
255
+ "Available_Date__c": "2025-02-01",
256
+ "Lease_Term__c": 24,
257
+ "Utilities__c": "None",
258
+ "Description__c": "Magnificent estate with pool, tennis court, wine cellar, and breathtaking city views. Ultimate luxury living.",
259
+ "Tour_URL__c": "https://example.com/tour/beverly-estate",
260
+ "Hero_Image__c": "https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=800",
261
+ "Agent__c": null
262
+ },
263
+ {
264
+ "attributes": {
265
+ "type": "Property__c",
266
+ "referenceId": "PropertyRef11"
267
+ },
268
+ "Name": "Downtown Office Suite",
269
+ "Address__c": "555 Market St, Suite 1200, San Francisco, CA 94105",
270
+ "Type__c": "Commercial",
271
+ "Sq_Ft__c": 5000,
272
+ "Status__c": "Rented",
273
+ "Bedrooms__c": 0,
274
+ "Bathrooms__c": 4,
275
+ "Year_Built__c": 2018,
276
+ "Parking__c": 10,
277
+ "Pet_Friendly__c": false,
278
+ "Features__c": "Conference Room;Kitchen;Reception",
279
+ "Monthly_Rent__c": 15000,
280
+ "Deposit__c": 15000,
281
+ "Available_Date__c": null,
282
+ "Lease_Term__c": 36,
283
+ "Utilities__c": "None",
284
+ "Description__c": "Modern office space with open floor plan, conference rooms, and panoramic bay views. Premium downtown location.",
285
+ "Tour_URL__c": "https://example.com/tour/market-office",
286
+ "Hero_Image__c": "https://images.unsplash.com/photo-1497366216548-37526070297c?w=800",
287
+ "Agent__c": null
288
+ },
289
+ {
290
+ "attributes": {
291
+ "type": "Property__c",
292
+ "referenceId": "PropertyRef12"
293
+ },
294
+ "Name": "Napa Valley Retreat",
295
+ "Address__c": "1050 Vineyard Rd, Napa, CA 94558",
296
+ "Type__c": "Single Family",
297
+ "Sq_Ft__c": 3500,
298
+ "Status__c": "Available",
299
+ "Bedrooms__c": 4,
300
+ "Bathrooms__c": 3,
301
+ "Year_Built__c": 2016,
302
+ "Parking__c": 3,
303
+ "Pet_Friendly__c": true,
304
+ "Features__c": "Pool;Garden;Vineyard Views",
305
+ "Monthly_Rent__c": 8500,
306
+ "Deposit__c": 17000,
307
+ "Available_Date__c": "2024-12-01",
308
+ "Lease_Term__c": 12,
309
+ "Utilities__c": "None",
310
+ "Description__c": "Beautiful wine country home with vineyard views, gourmet kitchen, and outdoor entertainment area. Perfect for wine enthusiasts.",
311
+ "Tour_URL__c": "https://example.com/tour/napa-retreat",
312
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800",
313
+ "Agent__c": null
314
+ },
315
+ {
316
+ "attributes": {
317
+ "type": "Property__c",
318
+ "referenceId": "PropertyRef13"
319
+ },
320
+ "Name": "Silicon Valley Townhome",
321
+ "Address__c": "875 Middlefield Rd, Mountain View, CA 94043",
322
+ "Type__c": "Single Family",
323
+ "Sq_Ft__c": 1850,
324
+ "Status__c": "Rented",
325
+ "Bedrooms__c": 3,
326
+ "Bathrooms__c": 2,
327
+ "Year_Built__c": 2017,
328
+ "Parking__c": 2,
329
+ "Pet_Friendly__c": true,
330
+ "Features__c": "Garage;Garden;Storage Unit",
331
+ "Monthly_Rent__c": 6800,
332
+ "Deposit__c": 6800,
333
+ "Available_Date__c": null,
334
+ "Lease_Term__c": 12,
335
+ "Utilities__c": "Water;Trash",
336
+ "Description__c": "Contemporary townhome near tech companies with private garage and community amenities. Ideal for families.",
337
+ "Tour_URL__c": null,
338
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800",
339
+ "Agent__c": null
340
+ },
341
+ {
342
+ "attributes": {
343
+ "type": "Property__c",
344
+ "referenceId": "PropertyRef14"
345
+ },
346
+ "Name": "Artistic Loft Space",
347
+ "Address__c": "1800 Industrial St, Unit 5, Oakland, CA 94607",
348
+ "Type__c": "Apartment",
349
+ "Sq_Ft__c": 1600,
350
+ "Status__c": "Rented",
351
+ "Bedrooms__c": 2,
352
+ "Bathrooms__c": 1,
353
+ "Year_Built__c": 2015,
354
+ "Parking__c": 1,
355
+ "Pet_Friendly__c": true,
356
+ "Features__c": "Hardwood Floors;High Ceilings;Exposed Beams",
357
+ "Monthly_Rent__c": 3500,
358
+ "Deposit__c": 3500,
359
+ "Available_Date__c": null,
360
+ "Lease_Term__c": 12,
361
+ "Utilities__c": "None",
362
+ "Description__c": "Converted warehouse loft with soaring ceilings, exposed beams, and artistic neighborhood vibe.",
363
+ "Tour_URL__c": "https://example.com/tour/artistic-loft",
364
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=800",
365
+ "Agent__c": null
366
+ },
367
+ {
368
+ "attributes": {
369
+ "type": "Property__c",
370
+ "referenceId": "PropertyRef15"
371
+ },
372
+ "Name": "Luxury High-Rise Unit",
373
+ "Address__c": "88 Howard St, Unit 4501, San Francisco, CA 94105",
374
+ "Type__c": "Condo",
375
+ "Sq_Ft__c": 2200,
376
+ "Status__c": "Maintenance",
377
+ "Bedrooms__c": 3,
378
+ "Bathrooms__c": 3,
379
+ "Year_Built__c": 2019,
380
+ "Parking__c": 2,
381
+ "Pet_Friendly__c": true,
382
+ "Features__c": "Concierge;Gym;Pool;Balcony",
383
+ "Monthly_Rent__c": 11000,
384
+ "Deposit__c": 22000,
385
+ "Available_Date__c": "2024-12-10",
386
+ "Lease_Term__c": 12,
387
+ "Utilities__c": "Water;Trash",
388
+ "Description__c": "Ultra-luxury penthouse with concierge service, gym, and incredible bay and city views. Currently under maintenance.",
389
+ "Tour_URL__c": "https://example.com/tour/luxury-highrise",
390
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600607687644-aac4c3eac7f4?w=800",
391
+ "Agent__c": null
392
+ },
393
+ {
394
+ "attributes": {
395
+ "type": "Property__c",
396
+ "referenceId": "PropertyRef16"
397
+ },
398
+ "Name": "Cozy Family Home",
399
+ "Address__c": "425 Pine St, Redwood City, CA 94063",
400
+ "Type__c": "Single Family",
401
+ "Sq_Ft__c": 1750,
402
+ "Status__c": "Available",
403
+ "Bedrooms__c": 3,
404
+ "Bathrooms__c": 2,
405
+ "Year_Built__c": 2012,
406
+ "Parking__c": 2,
407
+ "Pet_Friendly__c": true,
408
+ "Features__c": "Garden;Garage",
409
+ "Monthly_Rent__c": 5200,
410
+ "Deposit__c": 5200,
411
+ "Available_Date__c": "2024-12-15",
412
+ "Lease_Term__c": 12,
413
+ "Utilities__c": "None",
414
+ "Description__c": "Charming family home with large backyard, updated kitchen, and excellent school district. Perfect for families.",
415
+ "Tour_URL__c": null,
416
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=800",
417
+ "Agent__c": null
418
+ },
419
+ {
420
+ "attributes": {
421
+ "type": "Property__c",
422
+ "referenceId": "PropertyRef17"
423
+ },
424
+ "Name": "Modern Studio Apartment",
425
+ "Address__c": "210 King St, Apt 18C, San Francisco, CA 94107",
426
+ "Type__c": "Apartment",
427
+ "Sq_Ft__c": 650,
428
+ "Status__c": "Available",
429
+ "Bedrooms__c": 1,
430
+ "Bathrooms__c": 1,
431
+ "Year_Built__c": 2020,
432
+ "Parking__c": 0,
433
+ "Pet_Friendly__c": false,
434
+ "Features__c": "Smart Home;In-unit Laundry;Rooftop Access",
435
+ "Monthly_Rent__c": 2800,
436
+ "Deposit__c": 2800,
437
+ "Available_Date__c": "2024-12-01",
438
+ "Lease_Term__c": 12,
439
+ "Utilities__c": "Water;Trash",
440
+ "Description__c": "Brand new studio with smart home features, in-unit laundry, and rooftop terrace access. Modern living at its best.",
441
+ "Tour_URL__c": "https://example.com/tour/modern-studio",
442
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600585154084-4e5fe7c39198?w=800",
443
+ "Agent__c": null
444
+ },
445
+ {
446
+ "attributes": {
447
+ "type": "Property__c",
448
+ "referenceId": "PropertyRef18"
449
+ },
450
+ "Name": "Executive Suite",
451
+ "Address__c": "1000 California St, Unit 25A, San Francisco, CA 94108",
452
+ "Type__c": "Condo",
453
+ "Sq_Ft__c": 1900,
454
+ "Status__c": "Rented",
455
+ "Bedrooms__c": 2,
456
+ "Bathrooms__c": 2,
457
+ "Year_Built__c": 2018,
458
+ "Parking__c": 2,
459
+ "Pet_Friendly__c": true,
460
+ "Features__c": "Concierge;Gym;Pool;Doorman",
461
+ "Monthly_Rent__c": 13500,
462
+ "Deposit__c": 13500,
463
+ "Available_Date__c": null,
464
+ "Lease_Term__c": 12,
465
+ "Utilities__c": "Water;Trash",
466
+ "Description__c": "Sophisticated executive condo with marble finishes, city views, and luxury building amenities. Premium Nob Hill location.",
467
+ "Tour_URL__c": "https://example.com/tour/executive-suite",
468
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=800",
469
+ "Agent__c": null
470
+ },
471
+ {
472
+ "attributes": {
473
+ "type": "Property__c",
474
+ "referenceId": "PropertyRef19"
475
+ },
476
+ "Name": "Historic Victorian",
477
+ "Address__c": "1875 Sacramento St, San Francisco, CA 94109",
478
+ "Type__c": "Single Family",
479
+ "Sq_Ft__c": 4000,
480
+ "Status__c": "Under Renovation",
481
+ "Bedrooms__c": 5,
482
+ "Bathrooms__c": 4,
483
+ "Year_Built__c": 1890,
484
+ "Parking__c": 2,
485
+ "Pet_Friendly__c": true,
486
+ "Features__c": "Garden;Historic;Hardwood Floors",
487
+ "Monthly_Rent__c": 15000,
488
+ "Deposit__c": 30000,
489
+ "Available_Date__c": "2025-01-15",
490
+ "Lease_Term__c": 24,
491
+ "Utilities__c": "None",
492
+ "Description__c": "Fully restored Victorian mansion with period details, modern conveniences, and beautiful garden. Rare Pacific Heights gem.",
493
+ "Tour_URL__c": "https://example.com/tour/victorian",
494
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600566753151-384129cf4e3e?w=800",
495
+ "Agent__c": null
496
+ },
497
+ {
498
+ "attributes": {
499
+ "type": "Property__c",
500
+ "referenceId": "PropertyRef20"
501
+ },
502
+ "Name": "Bayside Apartments 2B",
503
+ "Address__c": "1600 Bay St, Unit 2B, San Francisco, CA 94123",
504
+ "Type__c": "Apartment",
505
+ "Sq_Ft__c": 1100,
506
+ "Status__c": "Available",
507
+ "Bedrooms__c": 2,
508
+ "Bathrooms__c": 1,
509
+ "Year_Built__c": 2014,
510
+ "Parking__c": 1,
511
+ "Pet_Friendly__c": true,
512
+ "Features__c": "Balcony;Hardwood Floors",
513
+ "Monthly_Rent__c": 4500,
514
+ "Deposit__c": 4500,
515
+ "Available_Date__c": "2024-12-01",
516
+ "Lease_Term__c": 12,
517
+ "Utilities__c": "Water",
518
+ "Description__c": "Bright apartment with bay views, hardwood floors, and walking distance to Marina Green. Great neighborhood.",
519
+ "Tour_URL__c": null,
520
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=800",
521
+ "Agent__c": null
522
+ },
523
+ {
524
+ "attributes": {
525
+ "type": "Property__c",
526
+ "referenceId": "PropertyRef21"
527
+ },
528
+ "Name": "Garden Oaks Townhouse",
529
+ "Address__c": "2250 Oak St, Berkeley, CA 94709",
530
+ "Type__c": "Single Family",
531
+ "Sq_Ft__c": 1650,
532
+ "Status__c": "Available",
533
+ "Bedrooms__c": 3,
534
+ "Bathrooms__c": 2,
535
+ "Year_Built__c": 2013,
536
+ "Parking__c": 2,
537
+ "Pet_Friendly__c": true,
538
+ "Features__c": "Garden;Garage",
539
+ "Monthly_Rent__c": 4200,
540
+ "Deposit__c": 4200,
541
+ "Available_Date__c": "2024-12-01",
542
+ "Lease_Term__c": 12,
543
+ "Utilities__c": "Water;Trash",
544
+ "Description__c": "Comfortable townhouse with private patio, attached garage, and close to UC Berkeley. Great for students or faculty.",
545
+ "Tour_URL__c": null,
546
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600573472556-e636b2f50cf9?w=800",
547
+ "Agent__c": null
548
+ },
549
+ {
550
+ "attributes": {
551
+ "type": "Property__c",
552
+ "referenceId": "PropertyRef22"
553
+ },
554
+ "Name": "Startup Hub Office",
555
+ "Address__c": "650 Townsend St, Floor 3, San Francisco, CA 94103",
556
+ "Type__c": "Commercial",
557
+ "Sq_Ft__c": 8000,
558
+ "Status__c": "Rented",
559
+ "Bedrooms__c": 0,
560
+ "Bathrooms__c": 6,
561
+ "Year_Built__c": 2016,
562
+ "Parking__c": 15,
563
+ "Pet_Friendly__c": false,
564
+ "Features__c": "Conference Room;Kitchen;Reception;High-Speed Internet",
565
+ "Monthly_Rent__c": 22000,
566
+ "Deposit__c": 22000,
567
+ "Available_Date__c": null,
568
+ "Lease_Term__c": 36,
569
+ "Utilities__c": "None",
570
+ "Description__c": "Modern open office space perfect for tech startups with high-speed internet and flexible layout. Prime SOMA location.",
571
+ "Tour_URL__c": "https://example.com/tour/startup-hub",
572
+ "Hero_Image__c": "https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=800",
573
+ "Agent__c": null
574
+ },
575
+ {
576
+ "attributes": {
577
+ "type": "Property__c",
578
+ "referenceId": "PropertyRef23"
579
+ },
580
+ "Name": "Sunset District Family Home",
581
+ "Address__c": "1950 46th Ave, San Francisco, CA 94116",
582
+ "Type__c": "Single Family",
583
+ "Sq_Ft__c": 2400,
584
+ "Status__c": "Rented",
585
+ "Bedrooms__c": 4,
586
+ "Bathrooms__c": 3,
587
+ "Year_Built__c": 2010,
588
+ "Parking__c": 2,
589
+ "Pet_Friendly__c": true,
590
+ "Features__c": "Garden;Garage;Storage Unit",
591
+ "Monthly_Rent__c": 6800,
592
+ "Deposit__c": 6800,
593
+ "Available_Date__c": null,
594
+ "Lease_Term__c": 12,
595
+ "Utilities__c": "None",
596
+ "Description__c": "Spacious family home with modern kitchen, large basement, and proximity to Golden Gate Park. Perfect for families.",
597
+ "Tour_URL__c": null,
598
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?w=800",
599
+ "Agent__c": null
600
+ },
601
+ {
602
+ "attributes": {
603
+ "type": "Property__c",
604
+ "referenceId": "PropertyRef24"
605
+ },
606
+ "Name": "Mission Bay Loft",
607
+ "Address__c": "350 Third St, Unit 12A, San Francisco, CA 94107",
608
+ "Type__c": "Apartment",
609
+ "Sq_Ft__c": 1400,
610
+ "Status__c": "Rented",
611
+ "Bedrooms__c": 2,
612
+ "Bathrooms__c": 2,
613
+ "Year_Built__c": 2019,
614
+ "Parking__c": 1,
615
+ "Pet_Friendly__c": true,
616
+ "Features__c": "Balcony;Gym;Pool",
617
+ "Monthly_Rent__c": 5500,
618
+ "Deposit__c": 5500,
619
+ "Available_Date__c": null,
620
+ "Lease_Term__c": 12,
621
+ "Utilities__c": "Water;Trash",
622
+ "Description__c": "Contemporary loft in vibrant Mission Bay with waterfront access and modern amenities. Great location near ballpark.",
623
+ "Tour_URL__c": "https://example.com/tour/mission-loft",
624
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?w=800",
625
+ "Agent__c": null
626
+ },
627
+ {
628
+ "attributes": {
629
+ "type": "Property__c",
630
+ "referenceId": "PropertyRef25"
631
+ },
632
+ "Name": "Pacific Heights Gem",
633
+ "Address__c": "2550 Webster St, San Francisco, CA 94115",
634
+ "Type__c": "Apartment",
635
+ "Sq_Ft__c": 1300,
636
+ "Status__c": "Available",
637
+ "Bedrooms__c": 2,
638
+ "Bathrooms__c": 2,
639
+ "Year_Built__c": 2018,
640
+ "Parking__c": 1,
641
+ "Pet_Friendly__c": true,
642
+ "Features__c": "Hardwood Floors;In-unit Laundry;Doorman",
643
+ "Monthly_Rent__c": 5800,
644
+ "Deposit__c": 5800,
645
+ "Available_Date__c": "2024-12-01",
646
+ "Lease_Term__c": 12,
647
+ "Utilities__c": "Water;Trash",
648
+ "Description__c": "Elegant apartment in prestigious Pacific Heights with hardwood floors, in-unit laundry, and 24/7 doorman service.",
649
+ "Tour_URL__c": "https://example.com/tour/pac-heights",
650
+ "Hero_Image__c": "https://images.unsplash.com/photo-1600585152220-90363fe7e115?w=800",
651
+ "Agent__c": null
652
+ }
653
+ ]
654
+ }