@salesforce/webapp-template-app-react-sample-b2e-experimental 1.36.3
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/LICENSE.txt +82 -0
- package/dist/.a4drules/build-validation.md +81 -0
- package/dist/.a4drules/code-quality.md +150 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-explore-graphql-schema.md +227 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-mutationquery.md +212 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-generate-graphql-readquery.md +185 -0
- package/dist/.a4drules/graphql/tools/knowledge/lds-guide-graphql.md +205 -0
- package/dist/.a4drules/graphql/tools/schemas/shared.graphqls +1150 -0
- package/dist/.a4drules/graphql.md +408 -0
- package/dist/.a4drules/images.md +13 -0
- package/dist/.a4drules/react.md +361 -0
- package/dist/.a4drules/react_image_processing.md +45 -0
- package/dist/.a4drules/skills/install-feature/SKILL.md +67 -0
- package/dist/.a4drules/skills/install-feature/scripts/copy-feature-assets.sh +36 -0
- package/dist/.a4drules/typescript.md +224 -0
- package/dist/.forceignore +15 -0
- package/dist/.husky/pre-commit +4 -0
- package/dist/.prettierignore +11 -0
- package/dist/.prettierrc +17 -0
- package/dist/CHANGELOG.md +533 -0
- package/dist/README.md +18 -0
- package/dist/config/project-scratch-def.json +13 -0
- package/dist/force-app/main/default/applications/Property_Management.app-meta.xml +26 -0
- package/dist/force-app/main/default/data/Application__c.json +124 -0
- package/dist/force-app/main/default/data/Maintenance_Request__c.json +514 -0
- package/dist/force-app/main/default/data/Maintenance_Worker__c.json +304 -0
- package/dist/force-app/main/default/data/Notification__c.json +214 -0
- package/dist/force-app/main/default/data/Property__c.json +654 -0
- package/dist/force-app/main/default/data/Tenant__c.json +184 -0
- package/dist/force-app/main/default/data/data-plan.json +38 -0
- package/dist/force-app/main/default/objects/Application__c/Application__c.object-meta.xml +67 -0
- 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 +15 -0
- package/dist/force-app/main/default/objects/Application__c/fields/References__c.field-meta.xml +10 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Start_Date__c.field-meta.xml +9 -0
- package/dist/force-app/main/default/objects/Application__c/fields/Status__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Application__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/Maintenance_Request__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Actual_Cost__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Completed__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Est_Cost__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Priority__c.field-meta.xml +32 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Scheduled__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/Status__c.field-meta.xml +42 -0
- 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 +42 -0
- package/dist/force-app/main/default/objects/Maintenance_Request__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/Maintenance_Worker__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Certifications__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Employment_Type__c.field-meta.xml +32 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Hourly_Rate__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/IsActive__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Location__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Phone__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Rating__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Maintenance_Worker__c/fields/Type__c.field-meta.xml +57 -0
- package/dist/force-app/main/default/objects/Notification__c/Notification__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Is_Read__c.field-meta.xml +10 -0
- 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/Notification__c/fields/Title__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/Type__c.field-meta.xml +36 -0
- package/dist/force-app/main/default/objects/Notification__c/fields/User__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/Property__c.object-meta.xml +66 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Address__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Agent__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Available_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Bathrooms__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Bedrooms__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Deposit__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Description__c.field-meta.xml +12 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Features__c.field-meta.xml +38 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Hero_Image__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Lease_Term__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Monthly_Rent__c.field-meta.xml +13 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Parking__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Pet_Friendly__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Sq_Ft__c.field-meta.xml +14 -0
- 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 +11 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Type__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Utilities__c.field-meta.xml +38 -0
- package/dist/force-app/main/default/objects/Property__c/fields/Year_Built__c.field-meta.xml +14 -0
- package/dist/force-app/main/default/objects/Tenant__c/Tenant__c.object-meta.xml +67 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/End_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Property__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Start_Date__c.field-meta.xml +11 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/Status__c.field-meta.xml +37 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/User_Status__c.field-meta.xml +42 -0
- package/dist/force-app/main/default/objects/Tenant__c/fields/User__c.field-meta.xml +15 -0
- package/dist/force-app/main/default/permissionsets/Property_Management_Access.permissionset-meta.xml +453 -0
- package/dist/force-app/main/default/tabs/Application__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Maintenance_Request__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/tabs/Maintenance_Worker__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Notification__c.tab-meta.xml +6 -0
- package/dist/force-app/main/default/tabs/Property__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/tabs/Tenant__c.tab-meta.xml +7 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/.graphqlrc.yml +2 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/.prettierignore +9 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/.prettierrc +11 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/appreactsampleb2e.webapplication-meta.xml +7 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/build/vite.config.d.ts +2 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/build/vite.config.js +94 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/codegen.yml +12 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/e2e/app.spec.ts +24 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/eslint.config.js +141 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/index.html +13 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/package-lock.json +12805 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/package.json +57 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/playwright.config.ts +24 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/scripts/get-graphql-schema.mjs +68 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/scripts/rewrite-e2e-assets.mjs +23 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/graphql-operations-types.ts +129 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/utils/accounts.ts +33 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/api/utils/query/highRevenueAccountsQuery.graphql +29 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/app.tsx +22 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/appLayout.tsx +29 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/icons/book.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/icons/copy.svg +4 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/icons/rocket.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/icons/star.svg +3 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/images/codey-1.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/images/codey-2.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/images/codey-3.png +0 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/assets/images/vibe-codey.svg +194 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/About.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/Home.tsx +12 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/pages/NotFound.tsx +18 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/routes.tsx +28 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/src/styles/global.css +13 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/tsconfig.json +36 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/tsconfig.node.json +13 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/vite-env.d.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/vite.config.ts +102 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/vitest-env.d.ts +2 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/vitest.config.ts +11 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/vitest.setup.ts +1 -0
- package/dist/force-app/main/default/webapplications/appreactsampleb2e/webapplication.json +7 -0
- package/dist/jest.config.js +6 -0
- package/dist/package.json +38 -0
- package/dist/scripts/apex/hello.apex +10 -0
- package/dist/scripts/soql/account.soql +6 -0
- package/dist/sfdx-project.json +12 -0
- package/package.json +34 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Application__c",
|
|
6
|
+
"referenceId": "ApplicationRef1"
|
|
7
|
+
},
|
|
8
|
+
"Property__c": "@PropertyRef5",
|
|
9
|
+
"User__c": null,
|
|
10
|
+
"Status__c": "Submitted",
|
|
11
|
+
"Start_Date__c": "2024-12-01",
|
|
12
|
+
"Employment__c": "TechCorp Inc. - Senior Software Engineer - $95,000/year",
|
|
13
|
+
"References__c": "Previous Landlord: John Smith, (555) 111-2222, Rented for 3 years with excellent payment history."
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"attributes": {
|
|
17
|
+
"type": "Application__c",
|
|
18
|
+
"referenceId": "ApplicationRef2"
|
|
19
|
+
},
|
|
20
|
+
"Property__c": "@PropertyRef8",
|
|
21
|
+
"User__c": null,
|
|
22
|
+
"Status__c": "Background Check",
|
|
23
|
+
"Start_Date__c": "2024-12-15",
|
|
24
|
+
"Employment__c": "City Hospital - Registered Nurse - $72,000/year",
|
|
25
|
+
"References__c": "Previous Landlord: Mary Johnson, (555) 333-4444, 2 years rental history, always on time."
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"attributes": {
|
|
29
|
+
"type": "Application__c",
|
|
30
|
+
"referenceId": "ApplicationRef3"
|
|
31
|
+
},
|
|
32
|
+
"Property__c": "@PropertyRef12",
|
|
33
|
+
"User__c": null,
|
|
34
|
+
"Status__c": "Approved",
|
|
35
|
+
"Start_Date__c": "2024-11-01",
|
|
36
|
+
"Employment__c": "Global Consulting LLC - Management Consultant - $110,000/year",
|
|
37
|
+
"References__c": "Previous Landlord: Robert Davis, (555) 555-6666, Corporate housing for 4 years."
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"attributes": {
|
|
41
|
+
"type": "Application__c",
|
|
42
|
+
"referenceId": "ApplicationRef4"
|
|
43
|
+
},
|
|
44
|
+
"Property__c": "@PropertyRef5",
|
|
45
|
+
"User__c": null,
|
|
46
|
+
"Status__c": "Rejected",
|
|
47
|
+
"Start_Date__c": "2024-12-01",
|
|
48
|
+
"Employment__c": "Retail Store - Assistant Manager - $32,000/year",
|
|
49
|
+
"References__c": "Previous Landlord: Sarah Williams, (555) 777-8888, 1 year rental."
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"attributes": {
|
|
53
|
+
"type": "Application__c",
|
|
54
|
+
"referenceId": "ApplicationRef5"
|
|
55
|
+
},
|
|
56
|
+
"Property__c": "@PropertyRef16",
|
|
57
|
+
"User__c": null,
|
|
58
|
+
"Status__c": "Draft",
|
|
59
|
+
"Start_Date__c": "2025-01-15",
|
|
60
|
+
"Employment__c": "University - Graduate Student - $18,000/year stipend",
|
|
61
|
+
"References__c": "Not yet provided"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"attributes": {
|
|
65
|
+
"type": "Application__c",
|
|
66
|
+
"referenceId": "ApplicationRef6"
|
|
67
|
+
},
|
|
68
|
+
"Property__c": "@PropertyRef20",
|
|
69
|
+
"User__c": null,
|
|
70
|
+
"Status__c": "Submitted",
|
|
71
|
+
"Start_Date__c": "2025-01-01",
|
|
72
|
+
"Employment__c": "Local Business - Marketing Coordinator - $48,000/year (Co-signer: Parent, $85,000/year)",
|
|
73
|
+
"References__c": "First-time renter. Co-signer: Patricia Brown, (555) 999-0000"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"attributes": {
|
|
77
|
+
"type": "Application__c",
|
|
78
|
+
"referenceId": "ApplicationRef7"
|
|
79
|
+
},
|
|
80
|
+
"Property__c": "@PropertyRef8",
|
|
81
|
+
"User__c": null,
|
|
82
|
+
"Status__c": "Background Check",
|
|
83
|
+
"Start_Date__c": "2024-12-20",
|
|
84
|
+
"Employment__c": "Finance Corp - Financial Analyst - $78,000/year",
|
|
85
|
+
"References__c": "Previous Landlord: Michael Green, (555) 111-3333, 2.5 years, excellent tenant."
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"attributes": {
|
|
89
|
+
"type": "Application__c",
|
|
90
|
+
"referenceId": "ApplicationRef8"
|
|
91
|
+
},
|
|
92
|
+
"Property__c": "@PropertyRef3",
|
|
93
|
+
"User__c": null,
|
|
94
|
+
"Status__c": "Approved",
|
|
95
|
+
"Start_Date__c": "2024-10-01",
|
|
96
|
+
"Employment__c": "Design Studio - UX Designer - $68,000/year",
|
|
97
|
+
"References__c": "Previous Landlord: Jennifer Lee, (555) 444-5555, 3 years, highly recommended."
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"attributes": {
|
|
101
|
+
"type": "Application__c",
|
|
102
|
+
"referenceId": "ApplicationRef9"
|
|
103
|
+
},
|
|
104
|
+
"Property__c": "@PropertyRef12",
|
|
105
|
+
"User__c": null,
|
|
106
|
+
"Status__c": "Rejected",
|
|
107
|
+
"Start_Date__c": "2024-10-25",
|
|
108
|
+
"Employment__c": "Various part-time positions - $25,000/year",
|
|
109
|
+
"References__c": "Previous Landlord: David Miller, (555) 666-7777, eviction on record."
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"attributes": {
|
|
113
|
+
"type": "Application__c",
|
|
114
|
+
"referenceId": "ApplicationRef10"
|
|
115
|
+
},
|
|
116
|
+
"Property__c": "@PropertyRef5",
|
|
117
|
+
"User__c": null,
|
|
118
|
+
"Status__c": "Submitted",
|
|
119
|
+
"Start_Date__c": "2024-12-10",
|
|
120
|
+
"Employment__c": "Teaching - High School Teacher - $55,000/year",
|
|
121
|
+
"References__c": "Previous Landlord: Susan Taylor, (555) 888-9999, 4 years, exemplary tenant with service dog."
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
}
|
|
@@ -0,0 +1,514 @@
|
|
|
1
|
+
{
|
|
2
|
+
"records": [
|
|
3
|
+
{
|
|
4
|
+
"attributes": {
|
|
5
|
+
"type": "Maintenance_Request__c",
|
|
6
|
+
"referenceId": "MaintenanceRef1"
|
|
7
|
+
},
|
|
8
|
+
"Property__c": "@PropertyRef1",
|
|
9
|
+
"User__c": null,
|
|
10
|
+
"Description__c": "Kitchen faucet has been dripping constantly for the past week. Water pressure seems low and cartridge may need replacement.",
|
|
11
|
+
"Type__c": "Plumbing",
|
|
12
|
+
"Priority__c": "Standard",
|
|
13
|
+
"Status__c": "Resolved",
|
|
14
|
+
"Est_Cost__c": 150.0,
|
|
15
|
+
"Actual_Cost__c": 135.5,
|
|
16
|
+
"Scheduled__c": "2024-09-02T10:00:00Z",
|
|
17
|
+
"Completed__c": "2024-09-02T11:30:00Z",
|
|
18
|
+
"Tenant_Home__c": false
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"attributes": {
|
|
22
|
+
"type": "Maintenance_Request__c",
|
|
23
|
+
"referenceId": "MaintenanceRef2"
|
|
24
|
+
},
|
|
25
|
+
"Property__c": "@PropertyRef2",
|
|
26
|
+
"User__c": null,
|
|
27
|
+
"Description__c": "Main bedroom electrical outlet stopped working. No power to the entire wall. Possible circuit breaker issue.",
|
|
28
|
+
"Type__c": "Electrical",
|
|
29
|
+
"Priority__c": "High (Same Day)",
|
|
30
|
+
"Status__c": "Resolved",
|
|
31
|
+
"Est_Cost__c": 200.0,
|
|
32
|
+
"Actual_Cost__c": 185.0,
|
|
33
|
+
"Scheduled__c": "2024-09-05T14:00:00Z",
|
|
34
|
+
"Completed__c": "2024-09-05T16:45:00Z",
|
|
35
|
+
"Tenant_Home__c": true
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"attributes": {
|
|
39
|
+
"type": "Maintenance_Request__c",
|
|
40
|
+
"referenceId": "MaintenanceRef3"
|
|
41
|
+
},
|
|
42
|
+
"Property__c": "@PropertyRef3",
|
|
43
|
+
"User__c": null,
|
|
44
|
+
"Description__c": "Air conditioning unit is making loud grinding noises when running. May need bearing replacement or refrigerant check.",
|
|
45
|
+
"Type__c": "HVAC",
|
|
46
|
+
"Priority__c": "High (Same Day)",
|
|
47
|
+
"Status__c": "In Progress",
|
|
48
|
+
"Est_Cost__c": 300.0,
|
|
49
|
+
"Actual_Cost__c": null,
|
|
50
|
+
"Scheduled__c": "2024-09-11T09:00:00Z",
|
|
51
|
+
"Completed__c": null,
|
|
52
|
+
"Tenant_Home__c": false
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"attributes": {
|
|
56
|
+
"type": "Maintenance_Request__c",
|
|
57
|
+
"referenceId": "MaintenanceRef4"
|
|
58
|
+
},
|
|
59
|
+
"Property__c": "@PropertyRef4",
|
|
60
|
+
"User__c": null,
|
|
61
|
+
"Description__c": "Pre-lease general maintenance inspection and cleaning before new tenant move-in. Check all fixtures and systems.",
|
|
62
|
+
"Type__c": "Plumbing",
|
|
63
|
+
"Priority__c": "Standard",
|
|
64
|
+
"Status__c": "In Progress",
|
|
65
|
+
"Est_Cost__c": 500.0,
|
|
66
|
+
"Actual_Cost__c": null,
|
|
67
|
+
"Scheduled__c": "2024-09-09T08:00:00Z",
|
|
68
|
+
"Completed__c": null,
|
|
69
|
+
"Tenant_Home__c": false
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"attributes": {
|
|
73
|
+
"type": "Maintenance_Request__c",
|
|
74
|
+
"referenceId": "MaintenanceRef5"
|
|
75
|
+
},
|
|
76
|
+
"Property__c": "@PropertyRef5",
|
|
77
|
+
"User__c": null,
|
|
78
|
+
"Description__c": "Kitchen dishwasher is not draining properly. Water pools at the bottom after wash cycles complete.",
|
|
79
|
+
"Type__c": "Appliance",
|
|
80
|
+
"Priority__c": "Standard",
|
|
81
|
+
"Status__c": "New",
|
|
82
|
+
"Est_Cost__c": 180.0,
|
|
83
|
+
"Actual_Cost__c": null,
|
|
84
|
+
"Scheduled__c": null,
|
|
85
|
+
"Completed__c": null,
|
|
86
|
+
"Tenant_Home__c": true
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"attributes": {
|
|
90
|
+
"type": "Maintenance_Request__c",
|
|
91
|
+
"referenceId": "MaintenanceRef6"
|
|
92
|
+
},
|
|
93
|
+
"Property__c": "@PropertyRef6",
|
|
94
|
+
"User__c": null,
|
|
95
|
+
"Description__c": "Master bedroom sliding closet door has come off its track and won't close properly. Track appears damaged.",
|
|
96
|
+
"Type__c": "Appliance",
|
|
97
|
+
"Priority__c": "Standard",
|
|
98
|
+
"Status__c": "Resolved",
|
|
99
|
+
"Est_Cost__c": 75.0,
|
|
100
|
+
"Actual_Cost__c": 65.0,
|
|
101
|
+
"Scheduled__c": "2024-08-29T13:00:00Z",
|
|
102
|
+
"Completed__c": "2024-08-29T14:30:00Z",
|
|
103
|
+
"Tenant_Home__c": false
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"attributes": {
|
|
107
|
+
"type": "Maintenance_Request__c",
|
|
108
|
+
"referenceId": "MaintenanceRef7"
|
|
109
|
+
},
|
|
110
|
+
"Property__c": "@PropertyRef7",
|
|
111
|
+
"User__c": null,
|
|
112
|
+
"Description__c": "Front entrance and window frames need touch-up painting due to weather damage and peeling paint.",
|
|
113
|
+
"Type__c": "Plumbing",
|
|
114
|
+
"Priority__c": "Standard",
|
|
115
|
+
"Status__c": "New",
|
|
116
|
+
"Est_Cost__c": 400.0,
|
|
117
|
+
"Actual_Cost__c": null,
|
|
118
|
+
"Scheduled__c": null,
|
|
119
|
+
"Completed__c": null,
|
|
120
|
+
"Tenant_Home__c": false
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"attributes": {
|
|
124
|
+
"type": "Maintenance_Request__c",
|
|
125
|
+
"referenceId": "MaintenanceRef8"
|
|
126
|
+
},
|
|
127
|
+
"Property__c": "@PropertyRef8",
|
|
128
|
+
"User__c": null,
|
|
129
|
+
"Description__c": "Backyard sprinkler system has multiple broken heads and the timer is not working properly.",
|
|
130
|
+
"Type__c": "Plumbing",
|
|
131
|
+
"Priority__c": "Standard",
|
|
132
|
+
"Status__c": "In Progress",
|
|
133
|
+
"Est_Cost__c": 250.0,
|
|
134
|
+
"Actual_Cost__c": null,
|
|
135
|
+
"Scheduled__c": "2024-09-08T10:00:00Z",
|
|
136
|
+
"Completed__c": null,
|
|
137
|
+
"Tenant_Home__c": false
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"attributes": {
|
|
141
|
+
"type": "Maintenance_Request__c",
|
|
142
|
+
"referenceId": "MaintenanceRef9"
|
|
143
|
+
},
|
|
144
|
+
"Property__c": "@PropertyRef9",
|
|
145
|
+
"User__c": null,
|
|
146
|
+
"Description__c": "Living room hardwood floors have several deep scratches that need sanding and refinishing.",
|
|
147
|
+
"Type__c": "Appliance",
|
|
148
|
+
"Priority__c": "Standard",
|
|
149
|
+
"Status__c": "New",
|
|
150
|
+
"Est_Cost__c": 350.0,
|
|
151
|
+
"Actual_Cost__c": null,
|
|
152
|
+
"Scheduled__c": null,
|
|
153
|
+
"Completed__c": null,
|
|
154
|
+
"Tenant_Home__c": true
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"attributes": {
|
|
158
|
+
"type": "Maintenance_Request__c",
|
|
159
|
+
"referenceId": "MaintenanceRef10"
|
|
160
|
+
},
|
|
161
|
+
"Property__c": "@PropertyRef10",
|
|
162
|
+
"User__c": null,
|
|
163
|
+
"Description__c": "Post-tenant move-out deep cleaning including carpets, windows, appliances, and all surfaces.",
|
|
164
|
+
"Type__c": "Appliance",
|
|
165
|
+
"Priority__c": "High (Same Day)",
|
|
166
|
+
"Status__c": "Resolved",
|
|
167
|
+
"Est_Cost__c": 450.0,
|
|
168
|
+
"Actual_Cost__c": 425.0,
|
|
169
|
+
"Scheduled__c": "2024-08-26T08:00:00Z",
|
|
170
|
+
"Completed__c": "2024-08-26T17:00:00Z",
|
|
171
|
+
"Tenant_Home__c": false
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"attributes": {
|
|
175
|
+
"type": "Maintenance_Request__c",
|
|
176
|
+
"referenceId": "MaintenanceRef11"
|
|
177
|
+
},
|
|
178
|
+
"Property__c": "@PropertyRef11",
|
|
179
|
+
"User__c": null,
|
|
180
|
+
"Description__c": "Annual roof inspection revealed loose tiles that need securing and replacement before winter season.",
|
|
181
|
+
"Type__c": "Plumbing",
|
|
182
|
+
"Priority__c": "High (Same Day)",
|
|
183
|
+
"Status__c": "In Progress",
|
|
184
|
+
"Est_Cost__c": 800.0,
|
|
185
|
+
"Actual_Cost__c": null,
|
|
186
|
+
"Scheduled__c": "2024-09-15T07:00:00Z",
|
|
187
|
+
"Completed__c": null,
|
|
188
|
+
"Tenant_Home__c": false
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"attributes": {
|
|
192
|
+
"type": "Maintenance_Request__c",
|
|
193
|
+
"referenceId": "MaintenanceRef12"
|
|
194
|
+
},
|
|
195
|
+
"Property__c": "@PropertyRef12",
|
|
196
|
+
"User__c": null,
|
|
197
|
+
"Description__c": "Office security system needs software update and two exterior cameras need replacement.",
|
|
198
|
+
"Type__c": "Electrical",
|
|
199
|
+
"Priority__c": "Standard",
|
|
200
|
+
"Status__c": "New",
|
|
201
|
+
"Est_Cost__c": 600.0,
|
|
202
|
+
"Actual_Cost__c": null,
|
|
203
|
+
"Scheduled__c": null,
|
|
204
|
+
"Completed__c": null,
|
|
205
|
+
"Tenant_Home__c": true
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"attributes": {
|
|
209
|
+
"type": "Maintenance_Request__c",
|
|
210
|
+
"referenceId": "MaintenanceRef13"
|
|
211
|
+
},
|
|
212
|
+
"Property__c": "@PropertyRef13",
|
|
213
|
+
"User__c": null,
|
|
214
|
+
"Description__c": "Main entrance lock is sticking and needs replacement for new tenant security and smooth operation.",
|
|
215
|
+
"Type__c": "Appliance",
|
|
216
|
+
"Priority__c": "High (Same Day)",
|
|
217
|
+
"Status__c": "Resolved",
|
|
218
|
+
"Est_Cost__c": 120.0,
|
|
219
|
+
"Actual_Cost__c": 110.0,
|
|
220
|
+
"Scheduled__c": "2024-09-03T11:00:00Z",
|
|
221
|
+
"Completed__c": "2024-09-03T12:15:00Z",
|
|
222
|
+
"Tenant_Home__c": false
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"attributes": {
|
|
226
|
+
"type": "Maintenance_Request__c",
|
|
227
|
+
"referenceId": "MaintenanceRef14"
|
|
228
|
+
},
|
|
229
|
+
"Property__c": "@PropertyRef14",
|
|
230
|
+
"User__c": null,
|
|
231
|
+
"Description__c": "Master bathroom shower has several cracked tiles that need removal and replacement to prevent water damage.",
|
|
232
|
+
"Type__c": "Plumbing",
|
|
233
|
+
"Priority__c": "Standard",
|
|
234
|
+
"Status__c": "New",
|
|
235
|
+
"Est_Cost__c": 280.0,
|
|
236
|
+
"Actual_Cost__c": null,
|
|
237
|
+
"Scheduled__c": null,
|
|
238
|
+
"Completed__c": null,
|
|
239
|
+
"Tenant_Home__c": false
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"attributes": {
|
|
243
|
+
"type": "Maintenance_Request__c",
|
|
244
|
+
"referenceId": "MaintenanceRef15"
|
|
245
|
+
},
|
|
246
|
+
"Property__c": "@PropertyRef15",
|
|
247
|
+
"User__c": null,
|
|
248
|
+
"Description__c": "Two bedroom windows have torn screens that need full replacement for insect protection.",
|
|
249
|
+
"Type__c": "Appliance",
|
|
250
|
+
"Priority__c": "Standard",
|
|
251
|
+
"Status__c": "Resolved",
|
|
252
|
+
"Est_Cost__c": 90.0,
|
|
253
|
+
"Actual_Cost__c": 85.0,
|
|
254
|
+
"Scheduled__c": "2024-08-21T09:00:00Z",
|
|
255
|
+
"Completed__c": "2024-08-21T10:30:00Z",
|
|
256
|
+
"Tenant_Home__c": true
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"attributes": {
|
|
260
|
+
"type": "Maintenance_Request__c",
|
|
261
|
+
"referenceId": "MaintenanceRef16"
|
|
262
|
+
},
|
|
263
|
+
"Property__c": "@PropertyRef16",
|
|
264
|
+
"User__c": null,
|
|
265
|
+
"Description__c": "Quarterly pest control treatment for common areas and all vacant units throughout the building.",
|
|
266
|
+
"Type__c": "Pest",
|
|
267
|
+
"Priority__c": "Standard",
|
|
268
|
+
"Status__c": "Resolved",
|
|
269
|
+
"Est_Cost__c": 200.0,
|
|
270
|
+
"Actual_Cost__c": 200.0,
|
|
271
|
+
"Scheduled__c": "2024-08-16T08:00:00Z",
|
|
272
|
+
"Completed__c": "2024-08-16T12:00:00Z",
|
|
273
|
+
"Tenant_Home__c": false
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"attributes": {
|
|
277
|
+
"type": "Maintenance_Request__c",
|
|
278
|
+
"referenceId": "MaintenanceRef17"
|
|
279
|
+
},
|
|
280
|
+
"Property__c": "@PropertyRef17",
|
|
281
|
+
"User__c": null,
|
|
282
|
+
"Description__c": "Monthly elevator maintenance and safety inspection as required by local building code regulations.",
|
|
283
|
+
"Type__c": "Electrical",
|
|
284
|
+
"Priority__c": "High (Same Day)",
|
|
285
|
+
"Status__c": "Resolved",
|
|
286
|
+
"Est_Cost__c": 300.0,
|
|
287
|
+
"Actual_Cost__c": 300.0,
|
|
288
|
+
"Scheduled__c": "2024-09-02T06:00:00Z",
|
|
289
|
+
"Completed__c": "2024-09-02T09:00:00Z",
|
|
290
|
+
"Tenant_Home__c": false
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"attributes": {
|
|
294
|
+
"type": "Maintenance_Request__c",
|
|
295
|
+
"referenceId": "MaintenanceRef18"
|
|
296
|
+
},
|
|
297
|
+
"Property__c": "@PropertyRef18",
|
|
298
|
+
"User__c": null,
|
|
299
|
+
"Description__c": "Weekly pool maintenance service including chemical balancing, filter cleaning, and water testing.",
|
|
300
|
+
"Type__c": "Plumbing",
|
|
301
|
+
"Priority__c": "Standard",
|
|
302
|
+
"Status__c": "Resolved",
|
|
303
|
+
"Est_Cost__c": 100.0,
|
|
304
|
+
"Actual_Cost__c": 100.0,
|
|
305
|
+
"Scheduled__c": "2024-09-16T10:00:00Z",
|
|
306
|
+
"Completed__c": "2024-09-16T11:30:00Z",
|
|
307
|
+
"Tenant_Home__c": false
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"attributes": {
|
|
311
|
+
"type": "Maintenance_Request__c",
|
|
312
|
+
"referenceId": "MaintenanceRef19"
|
|
313
|
+
},
|
|
314
|
+
"Property__c": "@PropertyRef19",
|
|
315
|
+
"User__c": null,
|
|
316
|
+
"Description__c": "Living room has a large hole in the drywall that needs patching, sanding, and repainting to match existing color.",
|
|
317
|
+
"Type__c": "Appliance",
|
|
318
|
+
"Priority__c": "Standard",
|
|
319
|
+
"Status__c": "New",
|
|
320
|
+
"Est_Cost__c": 150.0,
|
|
321
|
+
"Actual_Cost__c": null,
|
|
322
|
+
"Scheduled__c": null,
|
|
323
|
+
"Completed__c": null,
|
|
324
|
+
"Tenant_Home__c": false
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"attributes": {
|
|
328
|
+
"type": "Maintenance_Request__c",
|
|
329
|
+
"referenceId": "MaintenanceRef20"
|
|
330
|
+
},
|
|
331
|
+
"Property__c": "@PropertyRef20",
|
|
332
|
+
"User__c": null,
|
|
333
|
+
"Description__c": "Prepare garden irrigation system for winter season by draining lines to prevent freeze damage.",
|
|
334
|
+
"Type__c": "Plumbing",
|
|
335
|
+
"Priority__c": "Standard",
|
|
336
|
+
"Status__c": "New",
|
|
337
|
+
"Est_Cost__c": 200.0,
|
|
338
|
+
"Actual_Cost__c": null,
|
|
339
|
+
"Scheduled__c": null,
|
|
340
|
+
"Completed__c": null,
|
|
341
|
+
"Tenant_Home__c": false
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"attributes": {
|
|
345
|
+
"type": "Maintenance_Request__c",
|
|
346
|
+
"referenceId": "MaintenanceRef21"
|
|
347
|
+
},
|
|
348
|
+
"Property__c": "@PropertyRef21",
|
|
349
|
+
"User__c": null,
|
|
350
|
+
"Description__c": "Kitchen garbage disposal is jammed and making unusual grinding noises when turned on. Possible foreign object.",
|
|
351
|
+
"Type__c": "Plumbing",
|
|
352
|
+
"Priority__c": "Standard",
|
|
353
|
+
"Status__c": "In Progress",
|
|
354
|
+
"Est_Cost__c": 125.0,
|
|
355
|
+
"Actual_Cost__c": null,
|
|
356
|
+
"Scheduled__c": "2024-09-17T14:00:00Z",
|
|
357
|
+
"Completed__c": null,
|
|
358
|
+
"Tenant_Home__c": true
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"attributes": {
|
|
362
|
+
"type": "Maintenance_Request__c",
|
|
363
|
+
"referenceId": "MaintenanceRef22"
|
|
364
|
+
},
|
|
365
|
+
"Property__c": "@PropertyRef22",
|
|
366
|
+
"User__c": null,
|
|
367
|
+
"Description__c": "Annual electrical panel inspection and circuit breaker testing to ensure electrical safety compliance.",
|
|
368
|
+
"Type__c": "Electrical",
|
|
369
|
+
"Priority__c": "High (Same Day)",
|
|
370
|
+
"Status__c": "New",
|
|
371
|
+
"Est_Cost__c": 250.0,
|
|
372
|
+
"Actual_Cost__c": null,
|
|
373
|
+
"Scheduled__c": null,
|
|
374
|
+
"Completed__c": null,
|
|
375
|
+
"Tenant_Home__c": false
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"attributes": {
|
|
379
|
+
"type": "Maintenance_Request__c",
|
|
380
|
+
"referenceId": "MaintenanceRef23"
|
|
381
|
+
},
|
|
382
|
+
"Property__c": "@PropertyRef23",
|
|
383
|
+
"User__c": null,
|
|
384
|
+
"Description__c": "Monthly HVAC filter replacement for office building common areas and all air handling units.",
|
|
385
|
+
"Type__c": "HVAC",
|
|
386
|
+
"Priority__c": "Standard",
|
|
387
|
+
"Status__c": "Resolved",
|
|
388
|
+
"Est_Cost__c": 80.0,
|
|
389
|
+
"Actual_Cost__c": 75.0,
|
|
390
|
+
"Scheduled__c": "2024-09-02T08:00:00Z",
|
|
391
|
+
"Completed__c": "2024-09-02T09:30:00Z",
|
|
392
|
+
"Tenant_Home__c": false
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"attributes": {
|
|
396
|
+
"type": "Maintenance_Request__c",
|
|
397
|
+
"referenceId": "MaintenanceRef24"
|
|
398
|
+
},
|
|
399
|
+
"Property__c": "@PropertyRef24",
|
|
400
|
+
"User__c": null,
|
|
401
|
+
"Description__c": "Annual gutter cleaning and downspout inspection before winter season to prevent water damage.",
|
|
402
|
+
"Type__c": "Plumbing",
|
|
403
|
+
"Priority__c": "Standard",
|
|
404
|
+
"Status__c": "New",
|
|
405
|
+
"Est_Cost__c": 180.0,
|
|
406
|
+
"Actual_Cost__c": null,
|
|
407
|
+
"Scheduled__c": null,
|
|
408
|
+
"Completed__c": null,
|
|
409
|
+
"Tenant_Home__c": false
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"attributes": {
|
|
413
|
+
"type": "Maintenance_Request__c",
|
|
414
|
+
"referenceId": "MaintenanceRef25"
|
|
415
|
+
},
|
|
416
|
+
"Property__c": "@PropertyRef25",
|
|
417
|
+
"User__c": null,
|
|
418
|
+
"Description__c": "Install new washer and dryer units in laundry room for incoming tenant. Connect water, drain, and electrical.",
|
|
419
|
+
"Type__c": "Appliance",
|
|
420
|
+
"Priority__c": "High (Same Day)",
|
|
421
|
+
"Status__c": "In Progress",
|
|
422
|
+
"Est_Cost__c": 200.0,
|
|
423
|
+
"Actual_Cost__c": null,
|
|
424
|
+
"Scheduled__c": "2024-09-16T10:00:00Z",
|
|
425
|
+
"Completed__c": null,
|
|
426
|
+
"Tenant_Home__c": false
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"attributes": {
|
|
430
|
+
"type": "Maintenance_Request__c",
|
|
431
|
+
"referenceId": "MaintenanceRef26"
|
|
432
|
+
},
|
|
433
|
+
"Property__c": "@PropertyRef1",
|
|
434
|
+
"User__c": null,
|
|
435
|
+
"Description__c": "Kitchen cabinet door hinge is loose causing door to hang crooked and not close properly.",
|
|
436
|
+
"Type__c": "Appliance",
|
|
437
|
+
"Priority__c": "Standard",
|
|
438
|
+
"Status__c": "New",
|
|
439
|
+
"Est_Cost__c": 50.0,
|
|
440
|
+
"Actual_Cost__c": null,
|
|
441
|
+
"Scheduled__c": null,
|
|
442
|
+
"Completed__c": null,
|
|
443
|
+
"Tenant_Home__c": true
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"attributes": {
|
|
447
|
+
"type": "Maintenance_Request__c",
|
|
448
|
+
"referenceId": "MaintenanceRef27"
|
|
449
|
+
},
|
|
450
|
+
"Property__c": "@PropertyRef2",
|
|
451
|
+
"User__c": null,
|
|
452
|
+
"Description__c": "Living room wall has scuff marks and multiple nail holes that need spackling and touch-up painting.",
|
|
453
|
+
"Type__c": "Appliance",
|
|
454
|
+
"Priority__c": "Standard",
|
|
455
|
+
"Status__c": "New",
|
|
456
|
+
"Est_Cost__c": 120.0,
|
|
457
|
+
"Actual_Cost__c": null,
|
|
458
|
+
"Scheduled__c": null,
|
|
459
|
+
"Completed__c": null,
|
|
460
|
+
"Tenant_Home__c": false
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"attributes": {
|
|
464
|
+
"type": "Maintenance_Request__c",
|
|
465
|
+
"referenceId": "MaintenanceRef28"
|
|
466
|
+
},
|
|
467
|
+
"Property__c": "@PropertyRef3",
|
|
468
|
+
"User__c": null,
|
|
469
|
+
"Description__c": "Monthly balcony garden maintenance and plant care service including watering and fertilizing.",
|
|
470
|
+
"Type__c": "Plumbing",
|
|
471
|
+
"Priority__c": "Standard",
|
|
472
|
+
"Status__c": "Resolved",
|
|
473
|
+
"Est_Cost__c": 75.0,
|
|
474
|
+
"Actual_Cost__c": 75.0,
|
|
475
|
+
"Scheduled__c": "2024-09-11T09:00:00Z",
|
|
476
|
+
"Completed__c": "2024-09-11T10:30:00Z",
|
|
477
|
+
"Tenant_Home__c": false
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"attributes": {
|
|
481
|
+
"type": "Maintenance_Request__c",
|
|
482
|
+
"referenceId": "MaintenanceRef29"
|
|
483
|
+
},
|
|
484
|
+
"Property__c": "@PropertyRef5",
|
|
485
|
+
"User__c": null,
|
|
486
|
+
"Description__c": "Bedroom laminate flooring has a warped plank from water damage that needs removal and replacement.",
|
|
487
|
+
"Type__c": "Appliance",
|
|
488
|
+
"Priority__c": "Standard",
|
|
489
|
+
"Status__c": "New",
|
|
490
|
+
"Est_Cost__c": 160.0,
|
|
491
|
+
"Actual_Cost__c": null,
|
|
492
|
+
"Scheduled__c": null,
|
|
493
|
+
"Completed__c": null,
|
|
494
|
+
"Tenant_Home__c": false
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
"attributes": {
|
|
498
|
+
"type": "Maintenance_Request__c",
|
|
499
|
+
"referenceId": "MaintenanceRef30"
|
|
500
|
+
},
|
|
501
|
+
"Property__c": "@PropertyRef6",
|
|
502
|
+
"User__c": null,
|
|
503
|
+
"Description__c": "Annual carpet deep cleaning using steam cleaning method for all carpeted areas throughout the unit.",
|
|
504
|
+
"Type__c": "Appliance",
|
|
505
|
+
"Priority__c": "Standard",
|
|
506
|
+
"Status__c": "New",
|
|
507
|
+
"Est_Cost__c": 220.0,
|
|
508
|
+
"Actual_Cost__c": null,
|
|
509
|
+
"Scheduled__c": null,
|
|
510
|
+
"Completed__c": null,
|
|
511
|
+
"Tenant_Home__c": true
|
|
512
|
+
}
|
|
513
|
+
]
|
|
514
|
+
}
|