@salesforce/webapp-template-app-react-sample-b2x-experimental 1.67.0 → 1.68.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.
- package/dist/CHANGELOG.md +16 -0
- package/dist/force-app/main/default/data/Agent__c.json +79 -0
- package/dist/force-app/main/default/data/Application__c.json +115 -6
- package/dist/force-app/main/default/data/Contact.json +44 -0
- package/dist/force-app/main/default/data/Maintenance_Request__c.json +258 -334
- package/dist/force-app/main/default/data/Maintenance_Worker__c.json +135 -155
- package/dist/force-app/main/default/data/Notification__c.json +214 -0
- package/dist/force-app/main/default/data/Property__c.json +436 -311
- package/dist/force-app/main/default/data/Tenant__c.json +90 -9348
- package/dist/force-app/main/default/data/data-plan.json +42 -18
- package/dist/force-app/main/default/layouts/Application__c-Application Layout.layout-meta.xml +58 -0
- package/dist/force-app/main/default/layouts/Maintenance_Request__c-Maintenance Request Layout.layout-meta.xml +13 -28
- package/dist/force-app/main/default/layouts/Maintenance_Worker__c-Maintenance Worker Layout.layout-meta.xml +11 -24
- package/dist/force-app/main/default/layouts/Property__c-Property Layout.layout-meta.xml +23 -60
- package/dist/force-app/main/default/layouts/Tenant__c-Tenant Layout.layout-meta.xml +10 -23
- package/dist/force-app/main/default/objects/Agent__c/Agent__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Agent_Type__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Availability__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/{Tenant__c/fields/Emergency_Contact__c.field-meta.xml → Agent__c/fields/Emergency_Alt__c.field-meta.xml} +4 -5
- package/dist/force-app/main/default/objects/Agent__c/fields/Language__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Purchase_Date__c.field-meta.xml → Agent__c/fields/License_Expiry__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Agent__c/fields/License_Number__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Office_Location__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Agent__c/fields/Territory__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +4 -4
- package/dist/force-app/main/default/objects/Application__c/fields/Employment__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Property__c.field-meta.xml +4 -2
- package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +4 -5
- package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +3 -4
- package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +5 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +4 -4
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Scheduled_Date__c.field-meta.xml → Completed__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +3 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Estimated_Cost__c.field-meta.xml → Est_Cost__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +11 -10
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Completed_Date__c.field-meta.xml → Scheduled__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Home__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Type__c.field-meta.xml +4 -23
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/{Tenant__c.field-meta.xml → User__c.field-meta.xml} +4 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +6 -5
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/{Active__c.field-meta.xml → IsActive__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +5 -2
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/{Specialty__c.field-meta.xml → Type__c.field-meta.xml} +17 -11
- package/dist/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Furnished__c.field-meta.xml → Notification__c/fields/Is_Read__c.field-meta.xml} +4 -4
- package/dist/force-app/main/default/objects/Notification__c/fields/Message__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Priority__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Related_Object_Type__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Related_Record_Id__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/{Maintenance_Request__c → Notification__c}/fields/Title__c.field-meta.xml +3 -3
- package/dist/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/{Property__c/fields/Property_Manager__c.field-meta.xml → Notification__c/fields/User__c.field-meta.xml} +6 -5
- package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +6 -3
- package/dist/force-app/main/default/objects/Property__c/fields/{Property_Owner__c.field-meta.xml → Agent__c.field-meta.xml} +6 -5
- package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/{HOA_Fee__c.field-meta.xml → Deposit__c.field-meta.xml} +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +7 -6
- package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +5 -3
- package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +4 -3
- package/dist/force-app/main/default/objects/Property__c/fields/{Total_Units__c.field-meta.xml → Parking__c.field-meta.xml} +5 -4
- package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/{Square_Footage__c.field-meta.xml → Sq_Ft__c.field-meta.xml} +4 -3
- package/dist/force-app/main/default/objects/Property__c/fields/Status__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Tour_URL__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Property__c/fields/{Property_Type__c.field-meta.xml → Type__c.field-meta.xml} +6 -15
- package/dist/force-app/main/default/objects/Property__c/fields/{Utilities_Included__c.field-meta.xml → Utilities__c.field-meta.xml} +6 -20
- package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +2 -1
- package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +6 -4
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_End_Date__c.field-meta.xml → End_Date__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_Property__c.field-meta.xml → Property__c.field-meta.xml} +5 -3
- package/dist/force-app/main/default/objects/Tenant__c/fields/{Lease_Start_Date__c.field-meta.xml → Start_Date__c.field-meta.xml} +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +3 -2
- package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +6 -5
- package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +3 -1
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +225 -184
- package/dist/force-app/main/default/webapplications/appreactsampleb2x/package.json +3 -3
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +0 -29
- package/dist/force-app/main/default/objects/Application__c/fields/Employment_Info__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Assigned_Worker__c.field-meta.xml +0 -14
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Date_Requested__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Photo_URL__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Tenant_Present__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Email__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Profile_Picture_URL__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Years_Experience__c.field-meta.xml +0 -13
- package/dist/force-app/main/default/objects/Property__c/fields/Parking_Spaces__c.field-meta.xml +0 -13
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Address__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Management_Company__c.field-meta.xml +0 -16
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Status__c.field-meta.xml +0 -61
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Tax_Annual__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/fields/Property_Value__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/fields/Purchase_Price__c.field-meta.xml +0 -12
- package/dist/force-app/main/default/objects/Property__c/validationRules/Property_Value_Range.validationRule-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Tenant__c/fields/Email__c.field-meta.xml +0 -11
- package/dist/force-app/main/default/objects/Tenant__c/fields/Emergency_Contact_Phone__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/objects/Tenant__c/fields/Phone__c.field-meta.xml +0 -10
- package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/KPI_Snapshot__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Lease__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +0 -6
- package/dist/force-app/main/default/tabs/Payment__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property_Owner__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property_Sale__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +0 -7
- package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +0 -7
|
@@ -5,525 +5,650 @@
|
|
|
5
5
|
"type": "Property__c",
|
|
6
6
|
"referenceId": "PropertyRef1"
|
|
7
7
|
},
|
|
8
|
-
"Name": "
|
|
9
|
-
"Address__c": "
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
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",
|
|
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",
|
|
36
13
|
"Bedrooms__c": 2,
|
|
37
|
-
"Bathrooms__c":
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
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": "@AgentRef2"
|
|
44
28
|
},
|
|
45
29
|
{
|
|
46
30
|
"attributes": {
|
|
47
31
|
"type": "Property__c",
|
|
48
|
-
"referenceId": "
|
|
32
|
+
"referenceId": "PropertyRef2"
|
|
49
33
|
},
|
|
50
34
|
"Name": "Downtown Loft 501",
|
|
51
|
-
"Address__c": "789 Downtown St, Unit 501
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
56
|
-
"Property_Owner__c": "@PropertyOwnerRef3",
|
|
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",
|
|
57
39
|
"Bedrooms__c": 2,
|
|
58
40
|
"Bathrooms__c": 2,
|
|
59
|
-
"Square_Footage__c": 1400,
|
|
60
41
|
"Year_Built__c": 2016,
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
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": "@AgentRef2"
|
|
65
54
|
},
|
|
66
55
|
{
|
|
67
56
|
"attributes": {
|
|
68
57
|
"type": "Property__c",
|
|
69
|
-
"referenceId": "
|
|
58
|
+
"referenceId": "PropertyRef3"
|
|
70
59
|
},
|
|
71
60
|
"Name": "Garden Studio A12",
|
|
72
|
-
"Address__c": "321 Garden St, Unit A12
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"Property_Management_Company__c": "@CompanyRef2",
|
|
77
|
-
"Property_Owner__c": "@PropertyOwnerRef4",
|
|
61
|
+
"Address__c": "321 Garden St, Unit A12, Burbank, CA 91502",
|
|
62
|
+
"Type__c": "Apartment",
|
|
63
|
+
"Sq_Ft__c": 950,
|
|
64
|
+
"Status__c": "Rented",
|
|
78
65
|
"Bedrooms__c": 1,
|
|
79
66
|
"Bathrooms__c": 1,
|
|
80
|
-
"Square_Footage__c": 950,
|
|
81
67
|
"Year_Built__c": 2014,
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
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": "@AgentRef3"
|
|
86
80
|
},
|
|
87
81
|
{
|
|
88
82
|
"attributes": {
|
|
89
83
|
"type": "Property__c",
|
|
90
|
-
"referenceId": "
|
|
84
|
+
"referenceId": "PropertyRef4"
|
|
91
85
|
},
|
|
92
86
|
"Name": "Luxury Penthouse 2600",
|
|
93
|
-
"Address__c": "950 East Paces Ferry Rd NE #
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
98
|
-
"Property_Owner__c": "@PropertyOwnerRef5",
|
|
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",
|
|
99
91
|
"Bedrooms__c": 3,
|
|
100
92
|
"Bathrooms__c": 3,
|
|
101
|
-
"Square_Footage__c": 2400,
|
|
102
93
|
"Year_Built__c": 2019,
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
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": "@AgentRef4"
|
|
107
106
|
},
|
|
108
107
|
{
|
|
109
108
|
"attributes": {
|
|
110
109
|
"type": "Property__c",
|
|
111
|
-
"referenceId": "
|
|
110
|
+
"referenceId": "PropertyRef5"
|
|
112
111
|
},
|
|
113
112
|
"Name": "Sunset Towers Unit 403",
|
|
114
|
-
"Address__c": "8250 Sunset Blvd, Unit 403
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"Property_Management_Company__c": "@CompanyRef3",
|
|
119
|
-
"Property_Owner__c": "@PropertyOwnerRef6",
|
|
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",
|
|
120
117
|
"Bedrooms__c": 2,
|
|
121
118
|
"Bathrooms__c": 2,
|
|
122
|
-
"Square_Footage__c": 1200,
|
|
123
119
|
"Year_Built__c": 2017,
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
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": "@AgentRef5"
|
|
128
132
|
},
|
|
129
133
|
{
|
|
130
134
|
"attributes": {
|
|
131
135
|
"type": "Property__c",
|
|
132
|
-
"referenceId": "
|
|
136
|
+
"referenceId": "PropertyRef6"
|
|
133
137
|
},
|
|
134
138
|
"Name": "Ocean View Villa",
|
|
135
|
-
"Address__c": "1247 Ocean Blvd
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"Property_Management_Company__c": "@CompanyRef4",
|
|
140
|
-
"Property_Owner__c": "@PropertyOwnerRef7",
|
|
139
|
+
"Address__c": "1247 Ocean Blvd, Santa Monica, CA 90401",
|
|
140
|
+
"Type__c": "Single Family",
|
|
141
|
+
"Sq_Ft__c": 4200,
|
|
142
|
+
"Status__c": "Available",
|
|
141
143
|
"Bedrooms__c": 5,
|
|
142
144
|
"Bathrooms__c": 4,
|
|
143
|
-
"Square_Footage__c": 4200,
|
|
144
145
|
"Year_Built__c": 2021,
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
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": "@AgentRef3"
|
|
149
158
|
},
|
|
150
159
|
{
|
|
151
160
|
"attributes": {
|
|
152
161
|
"type": "Property__c",
|
|
153
|
-
"referenceId": "
|
|
162
|
+
"referenceId": "PropertyRef7"
|
|
154
163
|
},
|
|
155
164
|
"Name": "Tech Hub Condo",
|
|
156
|
-
"Address__c": "2100 University Ave, Unit 15B
|
|
157
|
-
"
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"Property_Management_Company__c": "@CompanyRef5",
|
|
161
|
-
"Property_Owner__c": "@PropertyOwnerRef8",
|
|
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",
|
|
162
169
|
"Bedrooms__c": 3,
|
|
163
170
|
"Bathrooms__c": 2,
|
|
164
|
-
"Square_Footage__c": 2000,
|
|
165
171
|
"Year_Built__c": 2019,
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"
|
|
169
|
-
"
|
|
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": "@AgentRef2"
|
|
170
184
|
},
|
|
171
185
|
{
|
|
172
186
|
"attributes": {
|
|
173
187
|
"type": "Property__c",
|
|
174
|
-
"referenceId": "
|
|
188
|
+
"referenceId": "PropertyRef8"
|
|
175
189
|
},
|
|
176
190
|
"Name": "Historic Brownstone",
|
|
177
|
-
"Address__c": "456 Telegraph Hill Blvd
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"
|
|
181
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
182
|
-
"Property_Owner__c": "@PropertyOwnerRef9",
|
|
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",
|
|
183
195
|
"Bedrooms__c": 4,
|
|
184
196
|
"Bathrooms__c": 3,
|
|
185
|
-
"Square_Footage__c": 2800,
|
|
186
197
|
"Year_Built__c": 1925,
|
|
187
|
-
"
|
|
188
|
-
"
|
|
189
|
-
"
|
|
190
|
-
"
|
|
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": "@AgentRef3"
|
|
191
210
|
},
|
|
192
211
|
{
|
|
193
212
|
"attributes": {
|
|
194
213
|
"type": "Property__c",
|
|
195
|
-
"referenceId": "
|
|
214
|
+
"referenceId": "PropertyRef9"
|
|
196
215
|
},
|
|
197
216
|
"Name": "Marina District Studio",
|
|
198
|
-
"Address__c": "3300 Fillmore St, Apt 2A
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"
|
|
202
|
-
"Property_Management_Company__c": "@CompanyRef2",
|
|
203
|
-
"Property_Owner__c": "@PropertyOwnerRef10",
|
|
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",
|
|
204
221
|
"Bedrooms__c": 1,
|
|
205
222
|
"Bathrooms__c": 1,
|
|
206
|
-
"Square_Footage__c": 750,
|
|
207
223
|
"Year_Built__c": 2015,
|
|
208
|
-
"
|
|
209
|
-
"
|
|
210
|
-
"
|
|
211
|
-
"
|
|
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": "@AgentRef4"
|
|
212
236
|
},
|
|
213
237
|
{
|
|
214
238
|
"attributes": {
|
|
215
239
|
"type": "Property__c",
|
|
216
|
-
"referenceId": "
|
|
240
|
+
"referenceId": "PropertyRef10"
|
|
217
241
|
},
|
|
218
242
|
"Name": "Beverly Hills Estate",
|
|
219
|
-
"Address__c": "9200 Sunset Blvd
|
|
220
|
-
"
|
|
221
|
-
"
|
|
222
|
-
"
|
|
223
|
-
"Property_Management_Company__c": "@CompanyRef4",
|
|
224
|
-
"Property_Owner__c": "@PropertyOwnerRef11",
|
|
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",
|
|
225
247
|
"Bedrooms__c": 7,
|
|
226
248
|
"Bathrooms__c": 6,
|
|
227
|
-
"Square_Footage__c": 8500,
|
|
228
249
|
"Year_Built__c": 2020,
|
|
229
|
-
"
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
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": "@AgentRef5"
|
|
233
262
|
},
|
|
234
263
|
{
|
|
235
264
|
"attributes": {
|
|
236
265
|
"type": "Property__c",
|
|
237
|
-
"referenceId": "
|
|
266
|
+
"referenceId": "PropertyRef11"
|
|
238
267
|
},
|
|
239
268
|
"Name": "Downtown Office Suite",
|
|
240
|
-
"Address__c": "555 Market St, Suite 1200
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"Property_Management_Company__c": "@CompanyRef3",
|
|
245
|
-
"Property_Owner__c": "@PropertyOwnerRef12",
|
|
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",
|
|
246
273
|
"Bedrooms__c": 0,
|
|
247
274
|
"Bathrooms__c": 4,
|
|
248
|
-
"Square_Footage__c": 5000,
|
|
249
275
|
"Year_Built__c": 2018,
|
|
250
|
-
"
|
|
251
|
-
"
|
|
252
|
-
"
|
|
253
|
-
"
|
|
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": "@AgentRef2"
|
|
254
288
|
},
|
|
255
289
|
{
|
|
256
290
|
"attributes": {
|
|
257
291
|
"type": "Property__c",
|
|
258
|
-
"referenceId": "
|
|
292
|
+
"referenceId": "PropertyRef12"
|
|
259
293
|
},
|
|
260
294
|
"Name": "Napa Valley Retreat",
|
|
261
|
-
"Address__c": "1050 Vineyard Rd
|
|
262
|
-
"
|
|
263
|
-
"
|
|
264
|
-
"
|
|
265
|
-
"Property_Management_Company__c": "@CompanyRef5",
|
|
266
|
-
"Property_Owner__c": "@PropertyOwnerRef13",
|
|
295
|
+
"Address__c": "1050 Vineyard Rd, Napa, CA 94558",
|
|
296
|
+
"Type__c": "Single Family",
|
|
297
|
+
"Sq_Ft__c": 3500,
|
|
298
|
+
"Status__c": "Available",
|
|
267
299
|
"Bedrooms__c": 4,
|
|
268
300
|
"Bathrooms__c": 3,
|
|
269
|
-
"Square_Footage__c": 3500,
|
|
270
301
|
"Year_Built__c": 2016,
|
|
271
|
-
"
|
|
272
|
-
"
|
|
273
|
-
"
|
|
274
|
-
"
|
|
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": "@AgentRef4"
|
|
275
314
|
},
|
|
276
315
|
{
|
|
277
316
|
"attributes": {
|
|
278
317
|
"type": "Property__c",
|
|
279
|
-
"referenceId": "
|
|
318
|
+
"referenceId": "PropertyRef13"
|
|
280
319
|
},
|
|
281
320
|
"Name": "Silicon Valley Townhome",
|
|
282
|
-
"Address__c": "875 Middlefield Rd
|
|
283
|
-
"
|
|
284
|
-
"
|
|
285
|
-
"
|
|
286
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
287
|
-
"Property_Owner__c": "@PropertyOwnerRef14",
|
|
321
|
+
"Address__c": "875 Middlefield Rd, Mountain View, CA 94043",
|
|
322
|
+
"Type__c": "Single Family",
|
|
323
|
+
"Sq_Ft__c": 1850,
|
|
324
|
+
"Status__c": "Rented",
|
|
288
325
|
"Bedrooms__c": 3,
|
|
289
326
|
"Bathrooms__c": 2,
|
|
290
|
-
"Square_Footage__c": 1850,
|
|
291
327
|
"Year_Built__c": 2017,
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"
|
|
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": "@AgentRef5"
|
|
296
340
|
},
|
|
297
341
|
{
|
|
298
342
|
"attributes": {
|
|
299
343
|
"type": "Property__c",
|
|
300
|
-
"referenceId": "
|
|
344
|
+
"referenceId": "PropertyRef14"
|
|
301
345
|
},
|
|
302
346
|
"Name": "Artistic Loft Space",
|
|
303
|
-
"Address__c": "1800 Industrial St, Unit 5
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"
|
|
307
|
-
"Property_Management_Company__c": "@CompanyRef2",
|
|
308
|
-
"Property_Owner__c": "@PropertyOwnerRef15",
|
|
347
|
+
"Address__c": "1800 Industrial St, Unit 5, Oakland, CA 94607",
|
|
348
|
+
"Type__c": "Apartment",
|
|
349
|
+
"Sq_Ft__c": 1600,
|
|
350
|
+
"Status__c": "Rented",
|
|
309
351
|
"Bedrooms__c": 2,
|
|
310
352
|
"Bathrooms__c": 1,
|
|
311
|
-
"Square_Footage__c": 1600,
|
|
312
353
|
"Year_Built__c": 2015,
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
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": "@AgentRef1"
|
|
317
366
|
},
|
|
318
367
|
{
|
|
319
368
|
"attributes": {
|
|
320
369
|
"type": "Property__c",
|
|
321
|
-
"referenceId": "
|
|
370
|
+
"referenceId": "PropertyRef15"
|
|
322
371
|
},
|
|
323
372
|
"Name": "Luxury High-Rise Unit",
|
|
324
|
-
"Address__c": "88 Howard St, Unit 4501
|
|
325
|
-
"
|
|
326
|
-
"
|
|
327
|
-
"
|
|
328
|
-
"Property_Management_Company__c": "@CompanyRef4",
|
|
329
|
-
"Property_Owner__c": "@PropertyOwnerRef16",
|
|
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",
|
|
330
377
|
"Bedrooms__c": 3,
|
|
331
378
|
"Bathrooms__c": 3,
|
|
332
|
-
"Square_Footage__c": 2200,
|
|
333
379
|
"Year_Built__c": 2019,
|
|
334
|
-
"
|
|
335
|
-
"
|
|
336
|
-
"
|
|
337
|
-
"
|
|
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-1737898378296-94dc316cd443?w=800",
|
|
391
|
+
"Agent__c": "@AgentRef2"
|
|
338
392
|
},
|
|
339
393
|
{
|
|
340
394
|
"attributes": {
|
|
341
395
|
"type": "Property__c",
|
|
342
|
-
"referenceId": "
|
|
396
|
+
"referenceId": "PropertyRef16"
|
|
343
397
|
},
|
|
344
398
|
"Name": "Cozy Family Home",
|
|
345
|
-
"Address__c": "425 Pine St
|
|
346
|
-
"
|
|
347
|
-
"
|
|
348
|
-
"
|
|
349
|
-
"Property_Management_Company__c": "@CompanyRef3",
|
|
350
|
-
"Property_Owner__c": "@PropertyOwnerRef17",
|
|
399
|
+
"Address__c": "425 Pine St, Redwood City, CA 94063",
|
|
400
|
+
"Type__c": "Single Family",
|
|
401
|
+
"Sq_Ft__c": 1750,
|
|
402
|
+
"Status__c": "Available",
|
|
351
403
|
"Bedrooms__c": 3,
|
|
352
404
|
"Bathrooms__c": 2,
|
|
353
|
-
"Square_Footage__c": 1750,
|
|
354
405
|
"Year_Built__c": 2012,
|
|
355
|
-
"
|
|
356
|
-
"
|
|
357
|
-
"
|
|
358
|
-
"
|
|
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": "@AgentRef3"
|
|
359
418
|
},
|
|
360
419
|
{
|
|
361
420
|
"attributes": {
|
|
362
421
|
"type": "Property__c",
|
|
363
|
-
"referenceId": "
|
|
422
|
+
"referenceId": "PropertyRef17"
|
|
364
423
|
},
|
|
365
424
|
"Name": "Modern Studio Apartment",
|
|
366
|
-
"Address__c": "210 King St, Apt 18C
|
|
367
|
-
"
|
|
368
|
-
"
|
|
369
|
-
"
|
|
370
|
-
"Property_Management_Company__c": "@CompanyRef5",
|
|
371
|
-
"Property_Owner__c": "@PropertyOwnerRef18",
|
|
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",
|
|
372
429
|
"Bedrooms__c": 1,
|
|
373
430
|
"Bathrooms__c": 1,
|
|
374
|
-
"Square_Footage__c": 650,
|
|
375
431
|
"Year_Built__c": 2020,
|
|
376
|
-
"
|
|
377
|
-
"
|
|
378
|
-
"
|
|
379
|
-
"
|
|
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": "@AgentRef4"
|
|
380
444
|
},
|
|
381
445
|
{
|
|
382
446
|
"attributes": {
|
|
383
447
|
"type": "Property__c",
|
|
384
|
-
"referenceId": "
|
|
448
|
+
"referenceId": "PropertyRef18"
|
|
385
449
|
},
|
|
386
450
|
"Name": "Executive Suite",
|
|
387
|
-
"Address__c": "1000 California St, Unit 25A
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
392
|
-
"Property_Owner__c": "@PropertyOwnerRef1",
|
|
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",
|
|
393
455
|
"Bedrooms__c": 2,
|
|
394
456
|
"Bathrooms__c": 2,
|
|
395
|
-
"Square_Footage__c": 1900,
|
|
396
457
|
"Year_Built__c": 2018,
|
|
397
|
-
"
|
|
398
|
-
"
|
|
399
|
-
"
|
|
400
|
-
"
|
|
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": "@AgentRef5"
|
|
401
470
|
},
|
|
402
471
|
{
|
|
403
472
|
"attributes": {
|
|
404
473
|
"type": "Property__c",
|
|
405
|
-
"referenceId": "
|
|
474
|
+
"referenceId": "PropertyRef19"
|
|
406
475
|
},
|
|
407
476
|
"Name": "Historic Victorian",
|
|
408
|
-
"Address__c": "1875 Sacramento St
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
"Property_Management_Company__c": "@CompanyRef2",
|
|
413
|
-
"Property_Owner__c": "@PropertyOwnerRef2",
|
|
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",
|
|
414
481
|
"Bedrooms__c": 5,
|
|
415
482
|
"Bathrooms__c": 4,
|
|
416
|
-
"Square_Footage__c": 4000,
|
|
417
483
|
"Year_Built__c": 1890,
|
|
418
|
-
"
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
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": "@AgentRef1"
|
|
422
496
|
},
|
|
423
497
|
{
|
|
424
498
|
"attributes": {
|
|
425
499
|
"type": "Property__c",
|
|
426
|
-
"referenceId": "
|
|
500
|
+
"referenceId": "PropertyRef20"
|
|
427
501
|
},
|
|
428
502
|
"Name": "Bayside Apartments 2B",
|
|
429
|
-
"Address__c": "1600 Bay St, Unit 2B
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"Property_Management_Company__c": "@CompanyRef3",
|
|
434
|
-
"Property_Owner__c": "@PropertyOwnerRef3",
|
|
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",
|
|
435
507
|
"Bedrooms__c": 2,
|
|
436
508
|
"Bathrooms__c": 1,
|
|
437
|
-
"Square_Footage__c": 1100,
|
|
438
509
|
"Year_Built__c": 2014,
|
|
439
|
-
"
|
|
440
|
-
"
|
|
441
|
-
"
|
|
442
|
-
"
|
|
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": "@AgentRef2"
|
|
443
522
|
},
|
|
444
523
|
{
|
|
445
524
|
"attributes": {
|
|
446
525
|
"type": "Property__c",
|
|
447
|
-
"referenceId": "
|
|
526
|
+
"referenceId": "PropertyRef21"
|
|
448
527
|
},
|
|
449
528
|
"Name": "Garden Oaks Townhouse",
|
|
450
|
-
"Address__c": "2250 Oak St
|
|
451
|
-
"
|
|
452
|
-
"
|
|
453
|
-
"
|
|
454
|
-
"Property_Management_Company__c": "@CompanyRef4",
|
|
455
|
-
"Property_Owner__c": "@PropertyOwnerRef4",
|
|
529
|
+
"Address__c": "2250 Oak St, Berkeley, CA 94709",
|
|
530
|
+
"Type__c": "Single Family",
|
|
531
|
+
"Sq_Ft__c": 1650,
|
|
532
|
+
"Status__c": "Available",
|
|
456
533
|
"Bedrooms__c": 3,
|
|
457
534
|
"Bathrooms__c": 2,
|
|
458
|
-
"Square_Footage__c": 1650,
|
|
459
535
|
"Year_Built__c": 2013,
|
|
460
|
-
"
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"
|
|
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-1603661764782-a3c9812afada?w=800",
|
|
547
|
+
"Agent__c": "@AgentRef3"
|
|
464
548
|
},
|
|
465
549
|
{
|
|
466
550
|
"attributes": {
|
|
467
551
|
"type": "Property__c",
|
|
468
|
-
"referenceId": "
|
|
552
|
+
"referenceId": "PropertyRef22"
|
|
469
553
|
},
|
|
470
554
|
"Name": "Startup Hub Office",
|
|
471
|
-
"Address__c": "650 Townsend St, Floor 3
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"
|
|
475
|
-
"Property_Management_Company__c": "@CompanyRef5",
|
|
476
|
-
"Property_Owner__c": "@PropertyOwnerRef5",
|
|
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",
|
|
477
559
|
"Bedrooms__c": 0,
|
|
478
560
|
"Bathrooms__c": 6,
|
|
479
|
-
"Square_Footage__c": 8000,
|
|
480
561
|
"Year_Built__c": 2016,
|
|
481
|
-
"
|
|
482
|
-
"
|
|
483
|
-
"
|
|
484
|
-
"
|
|
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": "@AgentRef4"
|
|
485
574
|
},
|
|
486
575
|
{
|
|
487
576
|
"attributes": {
|
|
488
577
|
"type": "Property__c",
|
|
489
|
-
"referenceId": "
|
|
578
|
+
"referenceId": "PropertyRef23"
|
|
490
579
|
},
|
|
491
580
|
"Name": "Sunset District Family Home",
|
|
492
|
-
"Address__c": "1950 46th Ave
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"Property_Management_Company__c": "@CompanyRef1",
|
|
497
|
-
"Property_Owner__c": "@PropertyOwnerRef6",
|
|
581
|
+
"Address__c": "1950 46th Ave, San Francisco, CA 94116",
|
|
582
|
+
"Type__c": "Single Family",
|
|
583
|
+
"Sq_Ft__c": 2400,
|
|
584
|
+
"Status__c": "Rented",
|
|
498
585
|
"Bedrooms__c": 4,
|
|
499
586
|
"Bathrooms__c": 3,
|
|
500
|
-
"Square_Footage__c": 2400,
|
|
501
587
|
"Year_Built__c": 2010,
|
|
502
|
-
"
|
|
503
|
-
"
|
|
504
|
-
"
|
|
505
|
-
"
|
|
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": "@AgentRef5"
|
|
506
600
|
},
|
|
507
601
|
{
|
|
508
602
|
"attributes": {
|
|
509
603
|
"type": "Property__c",
|
|
510
|
-
"referenceId": "
|
|
604
|
+
"referenceId": "PropertyRef24"
|
|
511
605
|
},
|
|
512
606
|
"Name": "Mission Bay Loft",
|
|
513
|
-
"Address__c": "350 Third St, Unit 12A
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"Property_Management_Company__c": "@CompanyRef2",
|
|
518
|
-
"Property_Owner__c": "@PropertyOwnerRef7",
|
|
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",
|
|
519
611
|
"Bedrooms__c": 2,
|
|
520
612
|
"Bathrooms__c": 2,
|
|
521
|
-
"Square_Footage__c": 1400,
|
|
522
613
|
"Year_Built__c": 2019,
|
|
523
|
-
"
|
|
524
|
-
"
|
|
525
|
-
"
|
|
526
|
-
"
|
|
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": "@AgentRef1"
|
|
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": "@AgentRef2"
|
|
527
652
|
}
|
|
528
653
|
]
|
|
529
654
|
}
|