@firedrill-tools/salesforce 0.1.1

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 (41) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +156 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/api-limit-exceeded.scenario.json +11 -0
  5. package/firedrill/baseline.scenario.json +2213 -0
  6. package/firedrill/conformance.suite.json +23 -0
  7. package/firedrill/row-locked.scenario.json +11 -0
  8. package/firedrill/salesforce-api-limit-exceeded.drill.json +336 -0
  9. package/firedrill/salesforce-collections-composite.drill.json +277 -0
  10. package/firedrill/salesforce-denied.drill.json +74 -0
  11. package/firedrill/salesforce-fresh-install.drill.json +86 -0
  12. package/firedrill/salesforce-inactive-user.drill.json +43 -0
  13. package/firedrill/salesforce-invalid-session.drill.json +336 -0
  14. package/firedrill/salesforce-large-responses.drill.json +138 -0
  15. package/firedrill/salesforce-mcp-aliases.drill.json +156 -0
  16. package/firedrill/salesforce-profile-permissions.drill.json +241 -0
  17. package/firedrill/salesforce-read-only.drill.json +154 -0
  18. package/firedrill/salesforce-rest-flow.drill.json +714 -0
  19. package/firedrill/salesforce-row-locked.drill.json +227 -0
  20. package/firedrill/salesforce-sharing.drill.json +201 -0
  21. package/firedrill/salesforce-soql.drill.json +139 -0
  22. package/firedrill/salesforce-tight-limits.drill.json +336 -0
  23. package/firedrill/salesforce-write-committed-lost.drill.json +176 -0
  24. package/firedrill/tight-limits.scenario.json +41 -0
  25. package/firedrill/tools/salesforce/behavior.mjs +637 -0
  26. package/firedrill/tools/salesforce/lib/bytes.mjs +56 -0
  27. package/firedrill/tools/salesforce/lib/ids.mjs +68 -0
  28. package/firedrill/tools/salesforce/lib/match.mjs +352 -0
  29. package/firedrill/tools/salesforce/lib/records.mjs +506 -0
  30. package/firedrill/tools/salesforce/lib/schema.mjs +429 -0
  31. package/firedrill/tools/salesforce/lib/search.mjs +92 -0
  32. package/firedrill/tools/salesforce/lib/soql.mjs +1119 -0
  33. package/firedrill/tools/salesforce/lib/state.mjs +378 -0
  34. package/firedrill/tools/salesforce/lib/wire.mjs +109 -0
  35. package/firedrill/tools/salesforce/salesforce.tool.json +3939 -0
  36. package/firedrill/world.json +2705 -0
  37. package/firedrill/write-committed-lost.scenario.json +11 -0
  38. package/firedrill.json +5 -0
  39. package/package.json +64 -0
  40. package/starter.json +2212 -0
  41. package/test/conformance.mjs +1122 -0
@@ -0,0 +1,2213 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "baseline",
4
+ "title": "Brightwater Instruments org as seeded (no faults)",
5
+ "state": [
6
+ {
7
+ "action": "upsert",
8
+ "packageId": "salesforce",
9
+ "namespace": "meta",
10
+ "rowId": "counters",
11
+ "value": {
12
+ "nextRecordNumber": 1001
13
+ }
14
+ },
15
+ {
16
+ "action": "upsert",
17
+ "packageId": "salesforce",
18
+ "namespace": "org",
19
+ "rowId": "org",
20
+ "value": {
21
+ "organizationId": "00DFd0000000001MAA",
22
+ "name": "Brightwater Instruments",
23
+ "instanceUrl": "https://brightwater.example.my.salesforce.test",
24
+ "myDomain": "brightwater",
25
+ "timeZoneSidKey": "Europe/Amsterdam",
26
+ "defaultCurrencyIsoCode": "EUR",
27
+ "defaultLocaleSidKey": "en_GB",
28
+ "orgWideDefaults": {
29
+ "Account": "ReadOnly",
30
+ "Contact": "ControlledByParent",
31
+ "Lead": "ReadWrite",
32
+ "Opportunity": "Private",
33
+ "Task": "Private"
34
+ },
35
+ "dailyApiRequests": {
36
+ "max": 15000,
37
+ "used": 138
38
+ },
39
+ "dataStorageMB": {
40
+ "max": 200,
41
+ "used": 3
42
+ },
43
+ "defaultUserId": "005Fd0000000001IAA",
44
+ "limits": {
45
+ "maxRowsPerNamespace": 10000
46
+ }
47
+ }
48
+ },
49
+ {
50
+ "action": "upsert",
51
+ "packageId": "salesforce",
52
+ "namespace": "custom-fields",
53
+ "rowId": "Account",
54
+ "value": {
55
+ "sobjectType": "Account",
56
+ "fields": [
57
+ {
58
+ "name": "External_Id__c",
59
+ "label": "External Id",
60
+ "type": "text",
61
+ "length": 255,
62
+ "precision": null,
63
+ "scale": null,
64
+ "picklistValues": [],
65
+ "externalId": true,
66
+ "unique": true,
67
+ "required": false,
68
+ "defaultValue": null
69
+ },
70
+ {
71
+ "name": "Customer_Tier__c",
72
+ "label": "Customer Tier",
73
+ "type": "picklist",
74
+ "length": 255,
75
+ "precision": null,
76
+ "scale": null,
77
+ "picklistValues": [
78
+ {
79
+ "label": "Free",
80
+ "value": "Free",
81
+ "default": false
82
+ },
83
+ {
84
+ "label": "Team",
85
+ "value": "Team",
86
+ "default": false
87
+ },
88
+ {
89
+ "label": "Enterprise",
90
+ "value": "Enterprise",
91
+ "default": false
92
+ }
93
+ ],
94
+ "externalId": false,
95
+ "unique": false,
96
+ "required": false,
97
+ "defaultValue": null
98
+ }
99
+ ]
100
+ }
101
+ },
102
+ {
103
+ "action": "upsert",
104
+ "packageId": "salesforce",
105
+ "namespace": "custom-fields",
106
+ "rowId": "Contact",
107
+ "value": {
108
+ "sobjectType": "Contact",
109
+ "fields": [
110
+ {
111
+ "name": "External_Id__c",
112
+ "label": "External Id",
113
+ "type": "text",
114
+ "length": 255,
115
+ "precision": null,
116
+ "scale": null,
117
+ "picklistValues": [],
118
+ "externalId": true,
119
+ "unique": true,
120
+ "required": false,
121
+ "defaultValue": null
122
+ }
123
+ ]
124
+ }
125
+ },
126
+ {
127
+ "action": "upsert",
128
+ "packageId": "salesforce",
129
+ "namespace": "custom-fields",
130
+ "rowId": "Opportunity",
131
+ "value": {
132
+ "sobjectType": "Opportunity",
133
+ "fields": [
134
+ {
135
+ "name": "ARR__c",
136
+ "label": "ARR",
137
+ "type": "currency",
138
+ "length": null,
139
+ "precision": 16,
140
+ "scale": 2,
141
+ "picklistValues": [],
142
+ "externalId": false,
143
+ "unique": false,
144
+ "required": false,
145
+ "defaultValue": null
146
+ }
147
+ ]
148
+ }
149
+ },
150
+ {
151
+ "action": "upsert",
152
+ "packageId": "salesforce",
153
+ "namespace": "profiles",
154
+ "rowId": "00eFd0000000001IAA",
155
+ "value": {
156
+ "Id": "00eFd0000000001IAA",
157
+ "Name": "System Administrator",
158
+ "UserLicense": "Salesforce",
159
+ "objectPermissions": {
160
+ "Account": {
161
+ "create": true,
162
+ "read": true,
163
+ "edit": true,
164
+ "delete": true,
165
+ "viewAll": true,
166
+ "modifyAll": true
167
+ },
168
+ "Contact": {
169
+ "create": true,
170
+ "read": true,
171
+ "edit": true,
172
+ "delete": true,
173
+ "viewAll": true,
174
+ "modifyAll": true
175
+ },
176
+ "Lead": {
177
+ "create": true,
178
+ "read": true,
179
+ "edit": true,
180
+ "delete": true,
181
+ "viewAll": true,
182
+ "modifyAll": true
183
+ },
184
+ "Opportunity": {
185
+ "create": true,
186
+ "read": true,
187
+ "edit": true,
188
+ "delete": true,
189
+ "viewAll": true,
190
+ "modifyAll": true
191
+ },
192
+ "Task": {
193
+ "create": true,
194
+ "read": true,
195
+ "edit": true,
196
+ "delete": true,
197
+ "viewAll": true,
198
+ "modifyAll": true
199
+ }
200
+ },
201
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
202
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
203
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
204
+ }
205
+ },
206
+ {
207
+ "action": "upsert",
208
+ "packageId": "salesforce",
209
+ "namespace": "profiles",
210
+ "rowId": "00eFd0000000002IAA",
211
+ "value": {
212
+ "Id": "00eFd0000000002IAA",
213
+ "Name": "Standard User",
214
+ "UserLicense": "Salesforce",
215
+ "objectPermissions": {
216
+ "Account": {
217
+ "create": true,
218
+ "read": true,
219
+ "edit": true,
220
+ "delete": true,
221
+ "viewAll": false,
222
+ "modifyAll": false
223
+ },
224
+ "Contact": {
225
+ "create": true,
226
+ "read": true,
227
+ "edit": true,
228
+ "delete": true,
229
+ "viewAll": false,
230
+ "modifyAll": false
231
+ },
232
+ "Lead": {
233
+ "create": true,
234
+ "read": true,
235
+ "edit": true,
236
+ "delete": true,
237
+ "viewAll": false,
238
+ "modifyAll": false
239
+ },
240
+ "Opportunity": {
241
+ "create": true,
242
+ "read": true,
243
+ "edit": true,
244
+ "delete": true,
245
+ "viewAll": false,
246
+ "modifyAll": false
247
+ },
248
+ "Task": {
249
+ "create": true,
250
+ "read": true,
251
+ "edit": true,
252
+ "delete": true,
253
+ "viewAll": false,
254
+ "modifyAll": false
255
+ }
256
+ },
257
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
258
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
259
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
260
+ }
261
+ },
262
+ {
263
+ "action": "upsert",
264
+ "packageId": "salesforce",
265
+ "namespace": "profiles",
266
+ "rowId": "00eFd0000000003IAA",
267
+ "value": {
268
+ "Id": "00eFd0000000003IAA",
269
+ "Name": "Read Only",
270
+ "UserLicense": "Salesforce",
271
+ "objectPermissions": {
272
+ "Account": {
273
+ "create": false,
274
+ "read": true,
275
+ "edit": false,
276
+ "delete": false,
277
+ "viewAll": false,
278
+ "modifyAll": false
279
+ },
280
+ "Contact": {
281
+ "create": false,
282
+ "read": true,
283
+ "edit": false,
284
+ "delete": false,
285
+ "viewAll": false,
286
+ "modifyAll": false
287
+ },
288
+ "Lead": {
289
+ "create": false,
290
+ "read": true,
291
+ "edit": false,
292
+ "delete": false,
293
+ "viewAll": false,
294
+ "modifyAll": false
295
+ },
296
+ "Opportunity": {
297
+ "create": false,
298
+ "read": true,
299
+ "edit": false,
300
+ "delete": false,
301
+ "viewAll": false,
302
+ "modifyAll": false
303
+ },
304
+ "Task": {
305
+ "create": false,
306
+ "read": true,
307
+ "edit": false,
308
+ "delete": false,
309
+ "viewAll": false,
310
+ "modifyAll": false
311
+ }
312
+ },
313
+ "CreatedDate": "2026-05-01T08:00:00.000+0000",
314
+ "LastModifiedDate": "2026-05-01T08:00:00.000+0000",
315
+ "SystemModstamp": "2026-05-01T08:00:00.000+0000"
316
+ }
317
+ },
318
+ {
319
+ "action": "upsert",
320
+ "packageId": "salesforce",
321
+ "namespace": "profiles",
322
+ "rowId": "00eFd0000000004IAA",
323
+ "value": {
324
+ "Id": "00eFd0000000004IAA",
325
+ "Name": "Sales Development Rep",
326
+ "UserLicense": "Salesforce",
327
+ "objectPermissions": {
328
+ "Account": {
329
+ "create": false,
330
+ "read": true,
331
+ "edit": false,
332
+ "delete": false,
333
+ "viewAll": false,
334
+ "modifyAll": false
335
+ },
336
+ "Contact": {
337
+ "create": true,
338
+ "read": true,
339
+ "edit": true,
340
+ "delete": false,
341
+ "viewAll": false,
342
+ "modifyAll": false
343
+ },
344
+ "Lead": {
345
+ "create": true,
346
+ "read": true,
347
+ "edit": true,
348
+ "delete": true,
349
+ "viewAll": false,
350
+ "modifyAll": false
351
+ },
352
+ "Opportunity": {
353
+ "create": false,
354
+ "read": false,
355
+ "edit": false,
356
+ "delete": false,
357
+ "viewAll": false,
358
+ "modifyAll": false
359
+ },
360
+ "Task": {
361
+ "create": true,
362
+ "read": true,
363
+ "edit": true,
364
+ "delete": true,
365
+ "viewAll": false,
366
+ "modifyAll": false
367
+ }
368
+ },
369
+ "CreatedDate": "2026-05-02T10:30:00.000+0000",
370
+ "LastModifiedDate": "2026-05-02T10:30:00.000+0000",
371
+ "SystemModstamp": "2026-05-02T10:30:00.000+0000"
372
+ }
373
+ },
374
+ {
375
+ "action": "upsert",
376
+ "packageId": "salesforce",
377
+ "namespace": "users",
378
+ "rowId": "005Fd0000000001IAA",
379
+ "value": {
380
+ "Id": "005Fd0000000001IAA",
381
+ "Username": "maren.solberg@brightwater.example.com",
382
+ "Email": "maren.solberg@brightwater.example.com",
383
+ "FirstName": "Maren",
384
+ "LastName": "Solberg",
385
+ "Name": "Maren Solberg",
386
+ "Alias": "msolb",
387
+ "Title": "VP Revenue Operations",
388
+ "IsActive": true,
389
+ "ProfileId": "00eFd0000000001IAA",
390
+ "UserType": "Standard",
391
+ "TimeZoneSidKey": "Europe/Amsterdam",
392
+ "LocaleSidKey": "en_GB",
393
+ "LanguageLocaleKey": "en_US",
394
+ "EmailEncodingKey": "UTF-8",
395
+ "CreatedDate": "2026-05-01T08:05:00.000+0000",
396
+ "LastModifiedDate": "2026-08-12T14:20:00.000+0000",
397
+ "SystemModstamp": "2026-08-12T14:20:00.000+0000"
398
+ }
399
+ },
400
+ {
401
+ "action": "upsert",
402
+ "packageId": "salesforce",
403
+ "namespace": "users",
404
+ "rowId": "005Fd0000000002IAA",
405
+ "value": {
406
+ "Id": "005Fd0000000002IAA",
407
+ "Username": "diego.alvarez@brightwater.example.com",
408
+ "Email": "diego.alvarez@brightwater.example.com",
409
+ "FirstName": "Diego",
410
+ "LastName": "Álvarez",
411
+ "Name": "Diego Álvarez",
412
+ "Alias": "dalva",
413
+ "Title": "Account Executive",
414
+ "IsActive": true,
415
+ "ProfileId": "00eFd0000000002IAA",
416
+ "UserType": "Standard",
417
+ "TimeZoneSidKey": "Europe/Amsterdam",
418
+ "LocaleSidKey": "en_GB",
419
+ "LanguageLocaleKey": "en_US",
420
+ "EmailEncodingKey": "UTF-8",
421
+ "CreatedDate": "2026-05-01T08:10:00.000+0000",
422
+ "LastModifiedDate": "2026-05-01T08:10:00.000+0000",
423
+ "SystemModstamp": "2026-05-01T08:10:00.000+0000"
424
+ }
425
+ },
426
+ {
427
+ "action": "upsert",
428
+ "packageId": "salesforce",
429
+ "namespace": "users",
430
+ "rowId": "005Fd0000000003IAA",
431
+ "value": {
432
+ "Id": "005Fd0000000003IAA",
433
+ "Username": "aiko.tanaka@brightwater.example.com",
434
+ "Email": "aiko.tanaka@brightwater.example.com",
435
+ "FirstName": "Aiko",
436
+ "LastName": "Tanaka",
437
+ "Name": "Aiko Tanaka",
438
+ "Alias": "atana",
439
+ "Title": "Account Executive",
440
+ "IsActive": true,
441
+ "ProfileId": "00eFd0000000002IAA",
442
+ "UserType": "Standard",
443
+ "TimeZoneSidKey": "Europe/Amsterdam",
444
+ "LocaleSidKey": "en_GB",
445
+ "LanguageLocaleKey": "en_US",
446
+ "EmailEncodingKey": "UTF-8",
447
+ "CreatedDate": "2026-05-01T08:12:00.000+0000",
448
+ "LastModifiedDate": "2026-05-01T08:12:00.000+0000",
449
+ "SystemModstamp": "2026-05-01T08:12:00.000+0000"
450
+ }
451
+ },
452
+ {
453
+ "action": "upsert",
454
+ "packageId": "salesforce",
455
+ "namespace": "users",
456
+ "rowId": "005Fd0000000004IAA",
457
+ "value": {
458
+ "Id": "005Fd0000000004IAA",
459
+ "Username": "ben.okafor@brightwater.example.com",
460
+ "Email": "ben.okafor@brightwater.example.com",
461
+ "FirstName": "Ben",
462
+ "LastName": "Okafor",
463
+ "Name": "Ben Okafor",
464
+ "Alias": "bokaf",
465
+ "Title": "Sales Development Representative",
466
+ "IsActive": true,
467
+ "ProfileId": "00eFd0000000004IAA",
468
+ "UserType": "Standard",
469
+ "TimeZoneSidKey": "Europe/Amsterdam",
470
+ "LocaleSidKey": "en_GB",
471
+ "LanguageLocaleKey": "en_US",
472
+ "EmailEncodingKey": "UTF-8",
473
+ "CreatedDate": "2026-05-02T10:35:00.000+0000",
474
+ "LastModifiedDate": "2026-05-02T10:35:00.000+0000",
475
+ "SystemModstamp": "2026-05-02T10:35:00.000+0000"
476
+ }
477
+ },
478
+ {
479
+ "action": "upsert",
480
+ "packageId": "salesforce",
481
+ "namespace": "users",
482
+ "rowId": "005Fd0000000005IAA",
483
+ "value": {
484
+ "Id": "005Fd0000000005IAA",
485
+ "Username": "lena.fischer@brightwater.example.com",
486
+ "Email": "lena.fischer@brightwater.example.com",
487
+ "FirstName": "Lena",
488
+ "LastName": "Fischer",
489
+ "Name": "Lena Fischer",
490
+ "Alias": "lfisc",
491
+ "Title": "RevOps Analyst",
492
+ "IsActive": true,
493
+ "ProfileId": "00eFd0000000003IAA",
494
+ "UserType": "Standard",
495
+ "TimeZoneSidKey": "Europe/Amsterdam",
496
+ "LocaleSidKey": "en_GB",
497
+ "LanguageLocaleKey": "en_US",
498
+ "EmailEncodingKey": "UTF-8",
499
+ "CreatedDate": "2026-05-03T09:00:00.000+0000",
500
+ "LastModifiedDate": "2026-05-03T09:00:00.000+0000",
501
+ "SystemModstamp": "2026-05-03T09:00:00.000+0000"
502
+ }
503
+ },
504
+ {
505
+ "action": "upsert",
506
+ "packageId": "salesforce",
507
+ "namespace": "users",
508
+ "rowId": "005Fd0000000006IAA",
509
+ "value": {
510
+ "Id": "005Fd0000000006IAA",
511
+ "Username": "jonas.weber@brightwater.example.com",
512
+ "Email": "jonas.weber@brightwater.example.com",
513
+ "FirstName": "Jonas",
514
+ "LastName": "Weber",
515
+ "Name": "Jonas Weber",
516
+ "Alias": "jwebe",
517
+ "Title": "Account Executive",
518
+ "IsActive": false,
519
+ "ProfileId": "00eFd0000000002IAA",
520
+ "UserType": "Standard",
521
+ "TimeZoneSidKey": "Europe/Amsterdam",
522
+ "LocaleSidKey": "en_GB",
523
+ "LanguageLocaleKey": "en_US",
524
+ "EmailEncodingKey": "UTF-8",
525
+ "CreatedDate": "2026-05-01T08:15:00.000+0000",
526
+ "LastModifiedDate": "2026-08-29T17:00:00.000+0000",
527
+ "SystemModstamp": "2026-08-29T17:00:00.000+0000"
528
+ }
529
+ },
530
+ {
531
+ "action": "upsert",
532
+ "packageId": "salesforce",
533
+ "namespace": "accounts",
534
+ "rowId": "001Fd0000000101IAA",
535
+ "value": {
536
+ "Id": "001Fd0000000101IAA",
537
+ "fields": {
538
+ "Name": "Nordlicht Labs GmbH",
539
+ "Type": "Customer - Direct",
540
+ "Industry": "Biotechnology",
541
+ "Website": "https://nordlicht-labs.example.com",
542
+ "Phone": "+49 30 5550 1100",
543
+ "BillingStreet": "Invalidenstraße 117",
544
+ "BillingCity": "Berlin",
545
+ "BillingState": "Berlin",
546
+ "BillingPostalCode": "10115",
547
+ "BillingCountry": "Germany",
548
+ "AnnualRevenue": 48000000,
549
+ "NumberOfEmployees": 340,
550
+ "Description": "Largest direct customer; spectrometer fleet across four sites.",
551
+ "ParentId": null,
552
+ "OwnerId": "005Fd0000000002IAA",
553
+ "External_Id__c": "BW-ACC-0001",
554
+ "Customer_Tier__c": "Enterprise"
555
+ },
556
+ "IsDeleted": false,
557
+ "DeletedDate": null,
558
+ "CreatedDate": "2026-05-04T10:00:00.000+0000",
559
+ "CreatedById": "005Fd0000000002IAA",
560
+ "LastModifiedDate": "2026-09-02T15:45:00.000+0000",
561
+ "LastModifiedById": "005Fd0000000002IAA",
562
+ "SystemModstamp": "2026-09-02T15:45:00.000+0000"
563
+ }
564
+ },
565
+ {
566
+ "action": "upsert",
567
+ "packageId": "salesforce",
568
+ "namespace": "accounts",
569
+ "rowId": "001Fd0000000102IAA",
570
+ "value": {
571
+ "Id": "001Fd0000000102IAA",
572
+ "fields": {
573
+ "Name": "Helix Diagnostics Ltd",
574
+ "Type": "Customer - Direct",
575
+ "Industry": "Healthcare",
576
+ "Website": "https://helix-dx.example.org",
577
+ "Phone": "+44 1223 555 0200",
578
+ "BillingStreet": "12 Science Park Road",
579
+ "BillingCity": "Cambridge",
580
+ "BillingState": "Cambridgeshire",
581
+ "BillingPostalCode": "CB4 0FX",
582
+ "BillingCountry": "United Kingdom",
583
+ "AnnualRevenue": 9500000,
584
+ "NumberOfEmployees": 120,
585
+ "Description": "Clinical analyzer pilot closed in June; expansion under discussion.",
586
+ "ParentId": null,
587
+ "OwnerId": "005Fd0000000003IAA",
588
+ "External_Id__c": "BW-ACC-0002",
589
+ "Customer_Tier__c": "Team"
590
+ },
591
+ "IsDeleted": false,
592
+ "DeletedDate": null,
593
+ "CreatedDate": "2026-05-06T11:30:00.000+0000",
594
+ "CreatedById": "005Fd0000000003IAA",
595
+ "LastModifiedDate": "2026-08-21T09:10:00.000+0000",
596
+ "LastModifiedById": "005Fd0000000003IAA",
597
+ "SystemModstamp": "2026-08-21T09:10:00.000+0000"
598
+ }
599
+ },
600
+ {
601
+ "action": "upsert",
602
+ "packageId": "salesforce",
603
+ "namespace": "accounts",
604
+ "rowId": "001Fd0000000103IAA",
605
+ "value": {
606
+ "Id": "001Fd0000000103IAA",
607
+ "fields": {
608
+ "Name": "Alder Creek Analytical",
609
+ "Type": "Prospect",
610
+ "Industry": "Consulting",
611
+ "Website": "https://aldercreek.example.com",
612
+ "Phone": "+1 503 555 0103",
613
+ "BillingStreet": null,
614
+ "BillingCity": "Portland",
615
+ "BillingState": "Oregon",
616
+ "BillingPostalCode": "97204",
617
+ "BillingCountry": "United States",
618
+ "AnnualRevenue": null,
619
+ "NumberOfEmployees": 12,
620
+ "Description": null,
621
+ "ParentId": null,
622
+ "OwnerId": "005Fd0000000002IAA",
623
+ "External_Id__c": null,
624
+ "Customer_Tier__c": "Free"
625
+ },
626
+ "IsDeleted": false,
627
+ "DeletedDate": null,
628
+ "CreatedDate": "2026-06-11T16:00:00.000+0000",
629
+ "CreatedById": "005Fd0000000002IAA",
630
+ "LastModifiedDate": "2026-06-11T16:00:00.000+0000",
631
+ "LastModifiedById": "005Fd0000000002IAA",
632
+ "SystemModstamp": "2026-06-11T16:00:00.000+0000"
633
+ }
634
+ },
635
+ {
636
+ "action": "upsert",
637
+ "packageId": "salesforce",
638
+ "namespace": "accounts",
639
+ "rowId": "001Fd0000000104IAA",
640
+ "value": {
641
+ "Id": "001Fd0000000104IAA",
642
+ "fields": {
643
+ "Name": "Vantage Biosciences",
644
+ "Type": "Prospect",
645
+ "Industry": "Biotechnology",
646
+ "Website": "https://vantage-bio.example.org",
647
+ "Phone": "+41 61 555 0104",
648
+ "BillingStreet": null,
649
+ "BillingCity": "Basel",
650
+ "BillingState": null,
651
+ "BillingPostalCode": null,
652
+ "BillingCountry": "Switzerland",
653
+ "AnnualRevenue": 2200000,
654
+ "NumberOfEmployees": 85,
655
+ "Description": null,
656
+ "ParentId": null,
657
+ "OwnerId": "005Fd0000000003IAA",
658
+ "External_Id__c": "BW-ACC-0003",
659
+ "Customer_Tier__c": null
660
+ },
661
+ "IsDeleted": false,
662
+ "DeletedDate": null,
663
+ "CreatedDate": "2026-06-18T13:20:00.000+0000",
664
+ "CreatedById": "005Fd0000000003IAA",
665
+ "LastModifiedDate": "2026-08-20T10:00:00.000+0000",
666
+ "LastModifiedById": "005Fd0000000003IAA",
667
+ "SystemModstamp": "2026-08-20T10:00:00.000+0000"
668
+ }
669
+ },
670
+ {
671
+ "action": "upsert",
672
+ "packageId": "salesforce",
673
+ "namespace": "accounts",
674
+ "rowId": "001Fd0000000105IAA",
675
+ "value": {
676
+ "Id": "001Fd0000000105IAA",
677
+ "fields": {
678
+ "Name": "O'Neill Diagnostics",
679
+ "Type": "Customer - Channel",
680
+ "Industry": "Healthcare",
681
+ "Website": "https://oneill-dx.example.com",
682
+ "Phone": "+353 1 555 0105",
683
+ "BillingStreet": null,
684
+ "BillingCity": "Dublin",
685
+ "BillingState": null,
686
+ "BillingPostalCode": null,
687
+ "BillingCountry": "Ireland",
688
+ "AnnualRevenue": 3100000,
689
+ "NumberOfEmployees": 60,
690
+ "Description": null,
691
+ "ParentId": null,
692
+ "OwnerId": "005Fd0000000002IAA",
693
+ "External_Id__c": null,
694
+ "Customer_Tier__c": "Team"
695
+ },
696
+ "IsDeleted": false,
697
+ "DeletedDate": null,
698
+ "CreatedDate": "2026-06-25T09:45:00.000+0000",
699
+ "CreatedById": "005Fd0000000002IAA",
700
+ "LastModifiedDate": "2026-06-25T09:45:00.000+0000",
701
+ "LastModifiedById": "005Fd0000000002IAA",
702
+ "SystemModstamp": "2026-06-25T09:45:00.000+0000"
703
+ }
704
+ },
705
+ {
706
+ "action": "upsert",
707
+ "packageId": "salesforce",
708
+ "namespace": "accounts",
709
+ "rowId": "001Fd0000000106IAA",
710
+ "value": {
711
+ "Id": "001Fd0000000106IAA",
712
+ "fields": {
713
+ "Name": "Meridian Instruments SA",
714
+ "Type": "Technology Partner",
715
+ "Industry": "Manufacturing",
716
+ "Website": "https://meridian-inst.example.com",
717
+ "Phone": "+33 4 55 01 0106",
718
+ "BillingStreet": "18 rue de la Part-Dieu",
719
+ "BillingCity": "Lyon",
720
+ "BillingState": null,
721
+ "BillingPostalCode": "69003",
722
+ "BillingCountry": "France",
723
+ "AnnualRevenue": 32000000,
724
+ "NumberOfEmployees": 5400,
725
+ "Description": "Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Brightwater covers co-branded calibration suites, joint field service and a shared spare-parts programme. Meridian Instruments designs and manufactures precision optical benches, thermal chambers and vibration-isolated platforms for laboratory automation. The Lyon plant runs three shifts and supplies OEM subassemblies to European instrument makers; the partnership with Br",
726
+ "ParentId": null,
727
+ "OwnerId": "005Fd0000000001IAA",
728
+ "External_Id__c": null,
729
+ "Customer_Tier__c": "Enterprise"
730
+ },
731
+ "IsDeleted": false,
732
+ "DeletedDate": null,
733
+ "CreatedDate": "2026-05-12T08:30:00.000+0000",
734
+ "CreatedById": "005Fd0000000001IAA",
735
+ "LastModifiedDate": "2026-09-05T11:00:00.000+0000",
736
+ "LastModifiedById": "005Fd0000000001IAA",
737
+ "SystemModstamp": "2026-09-05T11:00:00.000+0000"
738
+ }
739
+ },
740
+ {
741
+ "action": "upsert",
742
+ "packageId": "salesforce",
743
+ "namespace": "accounts",
744
+ "rowId": "001Fd0000000107IAA",
745
+ "value": {
746
+ "Id": "001Fd0000000107IAA",
747
+ "fields": {
748
+ "Name": "Nordlicht Labs GmbH",
749
+ "Type": "Customer - Direct",
750
+ "Industry": "Biotechnology",
751
+ "Website": "https://nordlicht-labs.example.com/hamburg",
752
+ "Phone": "+49 40 5550 1107",
753
+ "BillingStreet": null,
754
+ "BillingCity": "Hamburg",
755
+ "BillingState": null,
756
+ "BillingPostalCode": null,
757
+ "BillingCountry": "Germany",
758
+ "AnnualRevenue": 1800000,
759
+ "NumberOfEmployees": 45,
760
+ "Description": "Hamburg branch (subsidiary of the Berlin headquarters).",
761
+ "ParentId": "001Fd0000000101IAA",
762
+ "OwnerId": "005Fd0000000002IAA",
763
+ "External_Id__c": null,
764
+ "Customer_Tier__c": "Enterprise"
765
+ },
766
+ "IsDeleted": false,
767
+ "DeletedDate": null,
768
+ "CreatedDate": "2026-07-01T10:15:00.000+0000",
769
+ "CreatedById": "005Fd0000000002IAA",
770
+ "LastModifiedDate": "2026-07-01T10:15:00.000+0000",
771
+ "LastModifiedById": "005Fd0000000002IAA",
772
+ "SystemModstamp": "2026-07-01T10:15:00.000+0000"
773
+ }
774
+ },
775
+ {
776
+ "action": "upsert",
777
+ "packageId": "salesforce",
778
+ "namespace": "accounts",
779
+ "rowId": "001Fd0000000108IAA",
780
+ "value": {
781
+ "Id": "001Fd0000000108IAA",
782
+ "fields": {
783
+ "Name": "Kestrel Environmental",
784
+ "Type": "Prospect",
785
+ "Industry": "Energy",
786
+ "Website": "https://kestrel-env.example.org",
787
+ "Phone": "+44 1224 555 0108",
788
+ "BillingStreet": null,
789
+ "BillingCity": "Aberdeen",
790
+ "BillingState": null,
791
+ "BillingPostalCode": null,
792
+ "BillingCountry": "United Kingdom",
793
+ "AnnualRevenue": 6700000,
794
+ "NumberOfEmployees": 210,
795
+ "Description": null,
796
+ "ParentId": null,
797
+ "OwnerId": "005Fd0000000006IAA",
798
+ "External_Id__c": null,
799
+ "Customer_Tier__c": null
800
+ },
801
+ "IsDeleted": false,
802
+ "DeletedDate": null,
803
+ "CreatedDate": "2026-07-14T14:00:00.000+0000",
804
+ "CreatedById": "005Fd0000000006IAA",
805
+ "LastModifiedDate": "2026-07-14T14:00:00.000+0000",
806
+ "LastModifiedById": "005Fd0000000006IAA",
807
+ "SystemModstamp": "2026-07-14T14:00:00.000+0000"
808
+ }
809
+ },
810
+ {
811
+ "action": "upsert",
812
+ "packageId": "salesforce",
813
+ "namespace": "accounts",
814
+ "rowId": "001Fd0000000109IAA",
815
+ "value": {
816
+ "Id": "001Fd0000000109IAA",
817
+ "fields": {
818
+ "Name": "Tidewater University Research",
819
+ "Type": "Customer - Direct",
820
+ "Industry": "Education",
821
+ "Website": "https://tidewater-univ.example.org",
822
+ "Phone": "+1 757 555 0109",
823
+ "BillingStreet": null,
824
+ "BillingCity": "Norfolk",
825
+ "BillingState": "Virginia",
826
+ "BillingPostalCode": null,
827
+ "BillingCountry": "United States",
828
+ "AnnualRevenue": 12000000,
829
+ "NumberOfEmployees": 1500,
830
+ "Description": null,
831
+ "ParentId": null,
832
+ "OwnerId": "005Fd0000000003IAA",
833
+ "External_Id__c": null,
834
+ "Customer_Tier__c": "Team"
835
+ },
836
+ "IsDeleted": false,
837
+ "DeletedDate": null,
838
+ "CreatedDate": "2026-07-22T09:00:00.000+0000",
839
+ "CreatedById": "005Fd0000000003IAA",
840
+ "LastModifiedDate": "2026-09-08T16:30:00.000+0000",
841
+ "LastModifiedById": "005Fd0000000003IAA",
842
+ "SystemModstamp": "2026-09-08T16:30:00.000+0000"
843
+ }
844
+ },
845
+ {
846
+ "action": "upsert",
847
+ "packageId": "salesforce",
848
+ "namespace": "accounts",
849
+ "rowId": "001Fd0000000110IAA",
850
+ "value": {
851
+ "Id": "001Fd0000000110IAA",
852
+ "fields": {
853
+ "Name": "Brightwater Legacy Distributor",
854
+ "Type": "Channel Partner / Reseller",
855
+ "Industry": "Retail",
856
+ "Website": null,
857
+ "Phone": "+31 20 555 0110",
858
+ "BillingStreet": null,
859
+ "BillingCity": "Amsterdam",
860
+ "BillingState": null,
861
+ "BillingPostalCode": null,
862
+ "BillingCountry": "Netherlands",
863
+ "AnnualRevenue": 400000,
864
+ "NumberOfEmployees": 8,
865
+ "Description": null,
866
+ "ParentId": null,
867
+ "OwnerId": "005Fd0000000002IAA",
868
+ "External_Id__c": null,
869
+ "Customer_Tier__c": null
870
+ },
871
+ "IsDeleted": true,
872
+ "DeletedDate": "2026-08-30T17:30:00.000+0000",
873
+ "CreatedDate": "2026-05-20T12:00:00.000+0000",
874
+ "CreatedById": "005Fd0000000002IAA",
875
+ "LastModifiedDate": "2026-08-30T17:30:00.000+0000",
876
+ "LastModifiedById": "005Fd0000000002IAA",
877
+ "SystemModstamp": "2026-08-30T17:30:00.000+0000"
878
+ }
879
+ },
880
+ {
881
+ "action": "upsert",
882
+ "packageId": "salesforce",
883
+ "namespace": "contacts",
884
+ "rowId": "003Fd0000000201IAA",
885
+ "value": {
886
+ "Id": "003Fd0000000201IAA",
887
+ "fields": {
888
+ "FirstName": "Zoë",
889
+ "LastName": "Müller",
890
+ "Name": "Zoë Müller",
891
+ "Salutation": "Dr.",
892
+ "Email": "Zoe.Mueller@nordlicht-labs.example.com",
893
+ "Phone": "+49 30 5550 1201",
894
+ "MobilePhone": "+49 170 555 1201",
895
+ "Title": "Head of Lab Operations",
896
+ "Department": "Operations",
897
+ "AccountId": "001Fd0000000101IAA",
898
+ "MailingCity": "Berlin",
899
+ "MailingCountry": "Germany",
900
+ "LeadSource": "Web",
901
+ "HasOptedOutOfEmail": false,
902
+ "Description": null,
903
+ "OwnerId": "005Fd0000000002IAA",
904
+ "External_Id__c": "BW-CON-0001"
905
+ },
906
+ "IsDeleted": false,
907
+ "DeletedDate": null,
908
+ "CreatedDate": "2026-05-04T10:20:00.000+0000",
909
+ "CreatedById": "005Fd0000000002IAA",
910
+ "LastModifiedDate": "2026-08-15T13:00:00.000+0000",
911
+ "LastModifiedById": "005Fd0000000002IAA",
912
+ "SystemModstamp": "2026-08-15T13:00:00.000+0000"
913
+ }
914
+ },
915
+ {
916
+ "action": "upsert",
917
+ "packageId": "salesforce",
918
+ "namespace": "contacts",
919
+ "rowId": "003Fd0000000202IAA",
920
+ "value": {
921
+ "Id": "003Fd0000000202IAA",
922
+ "fields": {
923
+ "FirstName": "Søren",
924
+ "LastName": "Kjær",
925
+ "Name": "Søren Kjær",
926
+ "Salutation": "Mr.",
927
+ "Email": "soren.kjaer@nordlicht-labs.example.com",
928
+ "Phone": "+49 30 5550 1202",
929
+ "MobilePhone": null,
930
+ "Title": "Procurement Manager",
931
+ "Department": "Procurement",
932
+ "AccountId": "001Fd0000000101IAA",
933
+ "MailingCity": "Berlin",
934
+ "MailingCountry": "Germany",
935
+ "LeadSource": "Partner Referral",
936
+ "HasOptedOutOfEmail": false,
937
+ "Description": null,
938
+ "OwnerId": "005Fd0000000002IAA",
939
+ "External_Id__c": null
940
+ },
941
+ "IsDeleted": false,
942
+ "DeletedDate": null,
943
+ "CreatedDate": "2026-05-04T10:25:00.000+0000",
944
+ "CreatedById": "005Fd0000000002IAA",
945
+ "LastModifiedDate": "2026-05-04T10:25:00.000+0000",
946
+ "LastModifiedById": "005Fd0000000002IAA",
947
+ "SystemModstamp": "2026-05-04T10:25:00.000+0000"
948
+ }
949
+ },
950
+ {
951
+ "action": "upsert",
952
+ "packageId": "salesforce",
953
+ "namespace": "contacts",
954
+ "rowId": "003Fd0000000203IAA",
955
+ "value": {
956
+ "Id": "003Fd0000000203IAA",
957
+ "fields": {
958
+ "FirstName": "Priya",
959
+ "LastName": "Raman",
960
+ "Name": "Priya Raman",
961
+ "Salutation": "Ms.",
962
+ "Email": "priya.raman@nordlicht-labs.example.com",
963
+ "Phone": "+49 30 5550 1203",
964
+ "MobilePhone": null,
965
+ "Title": "Lab Technician",
966
+ "Department": "Operations",
967
+ "AccountId": "001Fd0000000101IAA",
968
+ "MailingCity": "Berlin",
969
+ "MailingCountry": "Germany",
970
+ "LeadSource": null,
971
+ "HasOptedOutOfEmail": true,
972
+ "Description": null,
973
+ "OwnerId": "005Fd0000000002IAA",
974
+ "External_Id__c": null
975
+ },
976
+ "IsDeleted": false,
977
+ "DeletedDate": null,
978
+ "CreatedDate": "2026-06-02T09:00:00.000+0000",
979
+ "CreatedById": "005Fd0000000002IAA",
980
+ "LastModifiedDate": "2026-06-02T09:00:00.000+0000",
981
+ "LastModifiedById": "005Fd0000000002IAA",
982
+ "SystemModstamp": "2026-06-02T09:00:00.000+0000"
983
+ }
984
+ },
985
+ {
986
+ "action": "upsert",
987
+ "packageId": "salesforce",
988
+ "namespace": "contacts",
989
+ "rowId": "003Fd0000000204IAA",
990
+ "value": {
991
+ "Id": "003Fd0000000204IAA",
992
+ "fields": {
993
+ "FirstName": "Callum",
994
+ "LastName": "Reid",
995
+ "Name": "Callum Reid",
996
+ "Salutation": "Mr.",
997
+ "Email": "callum.reid@helix-dx.example.org",
998
+ "Phone": "+44 1223 555 0204",
999
+ "MobilePhone": null,
1000
+ "Title": "Director of Clinical Operations",
1001
+ "Department": "Clinical",
1002
+ "AccountId": "001Fd0000000102IAA",
1003
+ "MailingCity": "Cambridge",
1004
+ "MailingCountry": "United Kingdom",
1005
+ "LeadSource": "Web",
1006
+ "HasOptedOutOfEmail": false,
1007
+ "Description": null,
1008
+ "OwnerId": "005Fd0000000003IAA",
1009
+ "External_Id__c": "BW-CON-0002"
1010
+ },
1011
+ "IsDeleted": false,
1012
+ "DeletedDate": null,
1013
+ "CreatedDate": "2026-05-06T11:40:00.000+0000",
1014
+ "CreatedById": "005Fd0000000003IAA",
1015
+ "LastModifiedDate": "2026-07-05T10:00:00.000+0000",
1016
+ "LastModifiedById": "005Fd0000000003IAA",
1017
+ "SystemModstamp": "2026-07-05T10:00:00.000+0000"
1018
+ }
1019
+ },
1020
+ {
1021
+ "action": "upsert",
1022
+ "packageId": "salesforce",
1023
+ "namespace": "contacts",
1024
+ "rowId": "003Fd0000000205IAA",
1025
+ "value": {
1026
+ "Id": "003Fd0000000205IAA",
1027
+ "fields": {
1028
+ "FirstName": "Amara",
1029
+ "LastName": "Osei",
1030
+ "Name": "Amara Osei",
1031
+ "Salutation": "Dr.",
1032
+ "Email": "amara.osei@helix-dx.example.org",
1033
+ "Phone": "+44 1223 555 0205",
1034
+ "MobilePhone": null,
1035
+ "Title": "Quality Manager",
1036
+ "Department": "Quality",
1037
+ "AccountId": "001Fd0000000102IAA",
1038
+ "MailingCity": "Cambridge",
1039
+ "MailingCountry": "United Kingdom",
1040
+ "LeadSource": "Other",
1041
+ "HasOptedOutOfEmail": false,
1042
+ "Description": null,
1043
+ "OwnerId": "005Fd0000000003IAA",
1044
+ "External_Id__c": null
1045
+ },
1046
+ "IsDeleted": false,
1047
+ "DeletedDate": null,
1048
+ "CreatedDate": "2026-06-30T15:00:00.000+0000",
1049
+ "CreatedById": "005Fd0000000003IAA",
1050
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1051
+ "LastModifiedById": "005Fd0000000003IAA",
1052
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1053
+ }
1054
+ },
1055
+ {
1056
+ "action": "upsert",
1057
+ "packageId": "salesforce",
1058
+ "namespace": "contacts",
1059
+ "rowId": "003Fd0000000206IAA",
1060
+ "value": {
1061
+ "Id": "003Fd0000000206IAA",
1062
+ "fields": {
1063
+ "FirstName": "Tom",
1064
+ "LastName": "Hendriks",
1065
+ "Name": "Tom Hendriks",
1066
+ "Salutation": "Mr.",
1067
+ "Email": null,
1068
+ "Phone": "+31 20 555 0206",
1069
+ "MobilePhone": null,
1070
+ "Title": "Field Engineer",
1071
+ "Department": "Service",
1072
+ "AccountId": "001Fd0000000102IAA",
1073
+ "MailingCity": "Amsterdam",
1074
+ "MailingCountry": "Netherlands",
1075
+ "LeadSource": null,
1076
+ "HasOptedOutOfEmail": false,
1077
+ "Description": null,
1078
+ "OwnerId": "005Fd0000000003IAA",
1079
+ "External_Id__c": null
1080
+ },
1081
+ "IsDeleted": false,
1082
+ "DeletedDate": null,
1083
+ "CreatedDate": "2026-07-08T08:45:00.000+0000",
1084
+ "CreatedById": "005Fd0000000003IAA",
1085
+ "LastModifiedDate": "2026-07-08T08:45:00.000+0000",
1086
+ "LastModifiedById": "005Fd0000000003IAA",
1087
+ "SystemModstamp": "2026-07-08T08:45:00.000+0000"
1088
+ }
1089
+ },
1090
+ {
1091
+ "action": "upsert",
1092
+ "packageId": "salesforce",
1093
+ "namespace": "contacts",
1094
+ "rowId": "003Fd0000000207IAA",
1095
+ "value": {
1096
+ "Id": "003Fd0000000207IAA",
1097
+ "fields": {
1098
+ "FirstName": "Isabel",
1099
+ "LastName": "Moreno",
1100
+ "Name": "Isabel Moreno",
1101
+ "Salutation": "Ms.",
1102
+ "Email": "isabel.moreno@aldercreek.example.com",
1103
+ "Phone": "+1 503 555 0207",
1104
+ "MobilePhone": null,
1105
+ "Title": "Founder",
1106
+ "Department": null,
1107
+ "AccountId": "001Fd0000000103IAA",
1108
+ "MailingCity": "Portland",
1109
+ "MailingCountry": "United States",
1110
+ "LeadSource": "Web",
1111
+ "HasOptedOutOfEmail": false,
1112
+ "Description": null,
1113
+ "OwnerId": "005Fd0000000002IAA",
1114
+ "External_Id__c": null
1115
+ },
1116
+ "IsDeleted": false,
1117
+ "DeletedDate": null,
1118
+ "CreatedDate": "2026-06-11T16:10:00.000+0000",
1119
+ "CreatedById": "005Fd0000000002IAA",
1120
+ "LastModifiedDate": "2026-06-11T16:10:00.000+0000",
1121
+ "LastModifiedById": "005Fd0000000002IAA",
1122
+ "SystemModstamp": "2026-06-11T16:10:00.000+0000"
1123
+ }
1124
+ },
1125
+ {
1126
+ "action": "upsert",
1127
+ "packageId": "salesforce",
1128
+ "namespace": "contacts",
1129
+ "rowId": "003Fd0000000208IAA",
1130
+ "value": {
1131
+ "Id": "003Fd0000000208IAA",
1132
+ "fields": {
1133
+ "FirstName": "Lukas",
1134
+ "LastName": "Brandt",
1135
+ "Name": "Lukas Brandt",
1136
+ "Salutation": "Dr.",
1137
+ "Email": "lukas.brandt@vantage-bio.example.org",
1138
+ "Phone": "+41 61 555 0208",
1139
+ "MobilePhone": null,
1140
+ "Title": "Chief Scientific Officer",
1141
+ "Department": "R&D",
1142
+ "AccountId": "001Fd0000000104IAA",
1143
+ "MailingCity": "Basel",
1144
+ "MailingCountry": "Switzerland",
1145
+ "LeadSource": "Purchased List",
1146
+ "HasOptedOutOfEmail": false,
1147
+ "Description": null,
1148
+ "OwnerId": "005Fd0000000003IAA",
1149
+ "External_Id__c": null
1150
+ },
1151
+ "IsDeleted": false,
1152
+ "DeletedDate": null,
1153
+ "CreatedDate": "2026-06-18T13:30:00.000+0000",
1154
+ "CreatedById": "005Fd0000000003IAA",
1155
+ "LastModifiedDate": "2026-06-18T13:30:00.000+0000",
1156
+ "LastModifiedById": "005Fd0000000003IAA",
1157
+ "SystemModstamp": "2026-06-18T13:30:00.000+0000"
1158
+ }
1159
+ },
1160
+ {
1161
+ "action": "upsert",
1162
+ "packageId": "salesforce",
1163
+ "namespace": "contacts",
1164
+ "rowId": "003Fd0000000209IAA",
1165
+ "value": {
1166
+ "Id": "003Fd0000000209IAA",
1167
+ "fields": {
1168
+ "FirstName": "Niamh",
1169
+ "LastName": "O'Neill",
1170
+ "Name": "Niamh O'Neill",
1171
+ "Salutation": "Ms.",
1172
+ "Email": "niamh.oneill@oneill-dx.example.com",
1173
+ "Phone": "+353 1 555 0209",
1174
+ "MobilePhone": null,
1175
+ "Title": "Chief Executive Officer",
1176
+ "Department": null,
1177
+ "AccountId": "001Fd0000000105IAA",
1178
+ "MailingCity": "Dublin",
1179
+ "MailingCountry": "Ireland",
1180
+ "LeadSource": "Phone Inquiry",
1181
+ "HasOptedOutOfEmail": false,
1182
+ "Description": null,
1183
+ "OwnerId": "005Fd0000000002IAA",
1184
+ "External_Id__c": null
1185
+ },
1186
+ "IsDeleted": false,
1187
+ "DeletedDate": null,
1188
+ "CreatedDate": "2026-06-25T09:50:00.000+0000",
1189
+ "CreatedById": "005Fd0000000002IAA",
1190
+ "LastModifiedDate": "2026-06-25T09:50:00.000+0000",
1191
+ "LastModifiedById": "005Fd0000000002IAA",
1192
+ "SystemModstamp": "2026-06-25T09:50:00.000+0000"
1193
+ }
1194
+ },
1195
+ {
1196
+ "action": "upsert",
1197
+ "packageId": "salesforce",
1198
+ "namespace": "contacts",
1199
+ "rowId": "003Fd0000000210IAA",
1200
+ "value": {
1201
+ "Id": "003Fd0000000210IAA",
1202
+ "fields": {
1203
+ "FirstName": "Grace",
1204
+ "LastName": "Adeyemi",
1205
+ "Name": "Grace Adeyemi",
1206
+ "Salutation": "Mrs.",
1207
+ "Email": "grace.adeyemi@meridian-inst.example.com",
1208
+ "Phone": "+33 4 55 01 0210",
1209
+ "MobilePhone": null,
1210
+ "Title": "Plant Manager",
1211
+ "Department": "Manufacturing",
1212
+ "AccountId": "001Fd0000000106IAA",
1213
+ "MailingCity": "Lyon",
1214
+ "MailingCountry": "France",
1215
+ "LeadSource": null,
1216
+ "HasOptedOutOfEmail": false,
1217
+ "Description": null,
1218
+ "OwnerId": "005Fd0000000001IAA",
1219
+ "External_Id__c": null
1220
+ },
1221
+ "IsDeleted": false,
1222
+ "DeletedDate": null,
1223
+ "CreatedDate": "2026-05-12T08:40:00.000+0000",
1224
+ "CreatedById": "005Fd0000000001IAA",
1225
+ "LastModifiedDate": "2026-09-05T11:05:00.000+0000",
1226
+ "LastModifiedById": "005Fd0000000001IAA",
1227
+ "SystemModstamp": "2026-09-05T11:05:00.000+0000"
1228
+ }
1229
+ },
1230
+ {
1231
+ "action": "upsert",
1232
+ "packageId": "salesforce",
1233
+ "namespace": "contacts",
1234
+ "rowId": "003Fd0000000211IAA",
1235
+ "value": {
1236
+ "Id": "003Fd0000000211IAA",
1237
+ "fields": {
1238
+ "FirstName": "Yuki",
1239
+ "LastName": "Sato",
1240
+ "Name": "Yuki Sato",
1241
+ "Salutation": "Prof.",
1242
+ "Email": "yuki.sato@tidewater-univ.example.org",
1243
+ "Phone": "+1 757 555 0211",
1244
+ "MobilePhone": null,
1245
+ "Title": "Research Director",
1246
+ "Department": "Marine Sciences",
1247
+ "AccountId": "001Fd0000000109IAA",
1248
+ "MailingCity": "Norfolk",
1249
+ "MailingCountry": "United States",
1250
+ "LeadSource": "Web",
1251
+ "HasOptedOutOfEmail": false,
1252
+ "Description": null,
1253
+ "OwnerId": "005Fd0000000003IAA",
1254
+ "External_Id__c": null
1255
+ },
1256
+ "IsDeleted": false,
1257
+ "DeletedDate": null,
1258
+ "CreatedDate": "2026-07-22T09:10:00.000+0000",
1259
+ "CreatedById": "005Fd0000000003IAA",
1260
+ "LastModifiedDate": "2026-07-22T09:10:00.000+0000",
1261
+ "LastModifiedById": "005Fd0000000003IAA",
1262
+ "SystemModstamp": "2026-07-22T09:10:00.000+0000"
1263
+ }
1264
+ },
1265
+ {
1266
+ "action": "upsert",
1267
+ "packageId": "salesforce",
1268
+ "namespace": "contacts",
1269
+ "rowId": "003Fd0000000212IAA",
1270
+ "value": {
1271
+ "Id": "003Fd0000000212IAA",
1272
+ "fields": {
1273
+ "FirstName": "Hannah",
1274
+ "LastName": "Walsh",
1275
+ "Name": "Hannah Walsh",
1276
+ "Salutation": "Ms.",
1277
+ "Email": "hannah.walsh@example.org",
1278
+ "Phone": "+44 20 7946 0212",
1279
+ "MobilePhone": null,
1280
+ "Title": "Independent laboratory consultant",
1281
+ "Department": null,
1282
+ "AccountId": null,
1283
+ "MailingCity": "London",
1284
+ "MailingCountry": "United Kingdom",
1285
+ "LeadSource": "Other",
1286
+ "HasOptedOutOfEmail": false,
1287
+ "Description": "Private contact without an account (visible to the owner only).",
1288
+ "OwnerId": "005Fd0000000003IAA",
1289
+ "External_Id__c": null
1290
+ },
1291
+ "IsDeleted": false,
1292
+ "DeletedDate": null,
1293
+ "CreatedDate": "2026-08-03T10:00:00.000+0000",
1294
+ "CreatedById": "005Fd0000000003IAA",
1295
+ "LastModifiedDate": "2026-08-03T10:00:00.000+0000",
1296
+ "LastModifiedById": "005Fd0000000003IAA",
1297
+ "SystemModstamp": "2026-08-03T10:00:00.000+0000"
1298
+ }
1299
+ },
1300
+ {
1301
+ "action": "upsert",
1302
+ "packageId": "salesforce",
1303
+ "namespace": "contacts",
1304
+ "rowId": "003Fd0000000213IAA",
1305
+ "value": {
1306
+ "Id": "003Fd0000000213IAA",
1307
+ "fields": {
1308
+ "FirstName": "Marco",
1309
+ "LastName": "Bellini",
1310
+ "Name": "Marco Bellini",
1311
+ "Salutation": "Mr.",
1312
+ "Email": "marco.bellini@kestrel-env.example.org",
1313
+ "Phone": "+44 1224 555 0213",
1314
+ "MobilePhone": null,
1315
+ "Title": "Site Lead",
1316
+ "Department": null,
1317
+ "AccountId": "001Fd0000000108IAA",
1318
+ "MailingCity": "Aberdeen",
1319
+ "MailingCountry": "United Kingdom",
1320
+ "LeadSource": null,
1321
+ "HasOptedOutOfEmail": false,
1322
+ "Description": null,
1323
+ "OwnerId": "005Fd0000000006IAA",
1324
+ "External_Id__c": null
1325
+ },
1326
+ "IsDeleted": false,
1327
+ "DeletedDate": null,
1328
+ "CreatedDate": "2026-07-14T14:10:00.000+0000",
1329
+ "CreatedById": "005Fd0000000006IAA",
1330
+ "LastModifiedDate": "2026-07-14T14:10:00.000+0000",
1331
+ "LastModifiedById": "005Fd0000000006IAA",
1332
+ "SystemModstamp": "2026-07-14T14:10:00.000+0000"
1333
+ }
1334
+ },
1335
+ {
1336
+ "action": "upsert",
1337
+ "packageId": "salesforce",
1338
+ "namespace": "contacts",
1339
+ "rowId": "003Fd0000000214IAA",
1340
+ "value": {
1341
+ "Id": "003Fd0000000214IAA",
1342
+ "fields": {
1343
+ "FirstName": "Frank",
1344
+ "LastName": "Delacroix",
1345
+ "Name": "Frank Delacroix",
1346
+ "Salutation": "Mr.",
1347
+ "Email": "frank.delacroix@legacy-dist.example.com",
1348
+ "Phone": "+31 20 555 0214",
1349
+ "MobilePhone": null,
1350
+ "Title": "Owner",
1351
+ "Department": null,
1352
+ "AccountId": "001Fd0000000110IAA",
1353
+ "MailingCity": "Amsterdam",
1354
+ "MailingCountry": "Netherlands",
1355
+ "LeadSource": null,
1356
+ "HasOptedOutOfEmail": false,
1357
+ "Description": null,
1358
+ "OwnerId": "005Fd0000000002IAA",
1359
+ "External_Id__c": null
1360
+ },
1361
+ "IsDeleted": true,
1362
+ "DeletedDate": "2026-08-30T17:30:00.000+0000",
1363
+ "CreatedDate": "2026-05-20T12:05:00.000+0000",
1364
+ "CreatedById": "005Fd0000000002IAA",
1365
+ "LastModifiedDate": "2026-08-30T17:30:00.000+0000",
1366
+ "LastModifiedById": "005Fd0000000002IAA",
1367
+ "SystemModstamp": "2026-08-30T17:30:00.000+0000"
1368
+ }
1369
+ },
1370
+ {
1371
+ "action": "upsert",
1372
+ "packageId": "salesforce",
1373
+ "namespace": "leads",
1374
+ "rowId": "00QFd0000000301MAA",
1375
+ "value": {
1376
+ "Id": "00QFd0000000301MAA",
1377
+ "fields": {
1378
+ "FirstName": "Elin",
1379
+ "LastName": "Vasquez",
1380
+ "Name": "Elin Vasquez",
1381
+ "Company": "Cobalt Peak Medical",
1382
+ "Title": "Lab Director",
1383
+ "Email": "elin.vasquez@cobaltpeak.example.com",
1384
+ "Phone": "+1 720 555 0301",
1385
+ "Website": "https://cobaltpeak.example.com",
1386
+ "Status": "Open - Not Contacted",
1387
+ "LeadSource": "Web",
1388
+ "Industry": "Healthcare",
1389
+ "Rating": "Hot",
1390
+ "NumberOfEmployees": 90,
1391
+ "City": "Denver",
1392
+ "Country": "United States",
1393
+ "Description": null,
1394
+ "IsConverted": false,
1395
+ "ConvertedDate": null,
1396
+ "ConvertedAccountId": null,
1397
+ "ConvertedContactId": null,
1398
+ "ConvertedOpportunityId": null,
1399
+ "OwnerId": "005Fd0000000004IAA"
1400
+ },
1401
+ "IsDeleted": false,
1402
+ "DeletedDate": null,
1403
+ "CreatedDate": "2026-09-10T08:00:00.000+0000",
1404
+ "CreatedById": "005Fd0000000004IAA",
1405
+ "LastModifiedDate": "2026-09-10T08:00:00.000+0000",
1406
+ "LastModifiedById": "005Fd0000000004IAA",
1407
+ "SystemModstamp": "2026-09-10T08:00:00.000+0000"
1408
+ }
1409
+ },
1410
+ {
1411
+ "action": "upsert",
1412
+ "packageId": "salesforce",
1413
+ "namespace": "leads",
1414
+ "rowId": "00QFd0000000302MAA",
1415
+ "value": {
1416
+ "Id": "00QFd0000000302MAA",
1417
+ "fields": {
1418
+ "FirstName": "Rahul",
1419
+ "LastName": "Mehta",
1420
+ "Name": "Rahul Mehta",
1421
+ "Company": "Sundial Genomics",
1422
+ "Title": "Head of Platform",
1423
+ "Email": "rahul.mehta@sundial-genomics.example.org",
1424
+ "Phone": "+91 80 5550 0302",
1425
+ "Website": null,
1426
+ "Status": "Working - Contacted",
1427
+ "LeadSource": "Partner Referral",
1428
+ "Industry": "Biotechnology",
1429
+ "Rating": "Warm",
1430
+ "NumberOfEmployees": 400,
1431
+ "City": "Bengaluru",
1432
+ "Country": "India",
1433
+ "Description": null,
1434
+ "IsConverted": false,
1435
+ "ConvertedDate": null,
1436
+ "ConvertedAccountId": null,
1437
+ "ConvertedContactId": null,
1438
+ "ConvertedOpportunityId": null,
1439
+ "OwnerId": "005Fd0000000002IAA"
1440
+ },
1441
+ "IsDeleted": false,
1442
+ "DeletedDate": null,
1443
+ "CreatedDate": "2026-07-02T09:30:00.000+0000",
1444
+ "CreatedById": "005Fd0000000002IAA",
1445
+ "LastModifiedDate": "2026-08-11T12:00:00.000+0000",
1446
+ "LastModifiedById": "005Fd0000000002IAA",
1447
+ "SystemModstamp": "2026-08-11T12:00:00.000+0000"
1448
+ }
1449
+ },
1450
+ {
1451
+ "action": "upsert",
1452
+ "packageId": "salesforce",
1453
+ "namespace": "leads",
1454
+ "rowId": "00QFd0000000303MAA",
1455
+ "value": {
1456
+ "Id": "00QFd0000000303MAA",
1457
+ "fields": {
1458
+ "FirstName": "Chloé",
1459
+ "LastName": "Dubois",
1460
+ "Name": "Chloé Dubois",
1461
+ "Company": "Atelier Pharma",
1462
+ "Title": "Operations Lead",
1463
+ "Email": null,
1464
+ "Phone": "+33 1 55 50 0303",
1465
+ "Website": null,
1466
+ "Status": "Open - Not Contacted",
1467
+ "LeadSource": "Phone Inquiry",
1468
+ "Industry": "Healthcare",
1469
+ "Rating": "Cold",
1470
+ "NumberOfEmployees": null,
1471
+ "City": "Paris",
1472
+ "Country": "France",
1473
+ "Description": null,
1474
+ "IsConverted": false,
1475
+ "ConvertedDate": null,
1476
+ "ConvertedAccountId": null,
1477
+ "ConvertedContactId": null,
1478
+ "ConvertedOpportunityId": null,
1479
+ "OwnerId": "005Fd0000000004IAA"
1480
+ },
1481
+ "IsDeleted": false,
1482
+ "DeletedDate": null,
1483
+ "CreatedDate": "2026-09-01T10:00:00.000+0000",
1484
+ "CreatedById": "005Fd0000000004IAA",
1485
+ "LastModifiedDate": "2026-09-01T10:00:00.000+0000",
1486
+ "LastModifiedById": "005Fd0000000004IAA",
1487
+ "SystemModstamp": "2026-09-01T10:00:00.000+0000"
1488
+ }
1489
+ },
1490
+ {
1491
+ "action": "upsert",
1492
+ "packageId": "salesforce",
1493
+ "namespace": "leads",
1494
+ "rowId": "00QFd0000000304MAA",
1495
+ "value": {
1496
+ "Id": "00QFd0000000304MAA",
1497
+ "fields": {
1498
+ "FirstName": "Omar",
1499
+ "LastName": "Haddad",
1500
+ "Name": "Omar Haddad",
1501
+ "Company": "Levant Diagnostics",
1502
+ "Title": "Procurement",
1503
+ "Email": "omar.haddad@levant-dx.example.com",
1504
+ "Phone": null,
1505
+ "Website": null,
1506
+ "Status": "Closed - Not Converted",
1507
+ "LeadSource": "Purchased List",
1508
+ "Industry": "Healthcare",
1509
+ "Rating": null,
1510
+ "NumberOfEmployees": null,
1511
+ "City": "Beirut",
1512
+ "Country": "Lebanon",
1513
+ "Description": "Budget frozen until next fiscal year.",
1514
+ "IsConverted": false,
1515
+ "ConvertedDate": null,
1516
+ "ConvertedAccountId": null,
1517
+ "ConvertedContactId": null,
1518
+ "ConvertedOpportunityId": null,
1519
+ "OwnerId": "005Fd0000000003IAA"
1520
+ },
1521
+ "IsDeleted": false,
1522
+ "DeletedDate": null,
1523
+ "CreatedDate": "2026-06-15T11:00:00.000+0000",
1524
+ "CreatedById": "005Fd0000000003IAA",
1525
+ "LastModifiedDate": "2026-07-20T09:00:00.000+0000",
1526
+ "LastModifiedById": "005Fd0000000003IAA",
1527
+ "SystemModstamp": "2026-07-20T09:00:00.000+0000"
1528
+ }
1529
+ },
1530
+ {
1531
+ "action": "upsert",
1532
+ "packageId": "salesforce",
1533
+ "namespace": "leads",
1534
+ "rowId": "00QFd0000000305MAA",
1535
+ "value": {
1536
+ "Id": "00QFd0000000305MAA",
1537
+ "fields": {
1538
+ "FirstName": "Sofia",
1539
+ "LastName": "Rossi",
1540
+ "Name": "Sofia Rossi",
1541
+ "Company": "Rossi Laboratori",
1542
+ "Title": "Managing Director",
1543
+ "Email": "sofia.rossi@rossi-lab.example.com",
1544
+ "Phone": "+39 02 5550 0305",
1545
+ "Website": "https://rossi-lab.example.com",
1546
+ "Status": "Working - Contacted",
1547
+ "LeadSource": "Web",
1548
+ "Industry": "Biotechnology",
1549
+ "Rating": "Hot",
1550
+ "NumberOfEmployees": 35,
1551
+ "City": "Milan",
1552
+ "Country": "Italy",
1553
+ "Description": null,
1554
+ "IsConverted": false,
1555
+ "ConvertedDate": null,
1556
+ "ConvertedAccountId": null,
1557
+ "ConvertedContactId": null,
1558
+ "ConvertedOpportunityId": null,
1559
+ "OwnerId": "005Fd0000000002IAA"
1560
+ },
1561
+ "IsDeleted": false,
1562
+ "DeletedDate": null,
1563
+ "CreatedDate": "2026-08-28T14:15:00.000+0000",
1564
+ "CreatedById": "005Fd0000000002IAA",
1565
+ "LastModifiedDate": "2026-09-09T10:20:00.000+0000",
1566
+ "LastModifiedById": "005Fd0000000002IAA",
1567
+ "SystemModstamp": "2026-09-09T10:20:00.000+0000"
1568
+ }
1569
+ },
1570
+ {
1571
+ "action": "upsert",
1572
+ "packageId": "salesforce",
1573
+ "namespace": "leads",
1574
+ "rowId": "00QFd0000000306MAA",
1575
+ "value": {
1576
+ "Id": "00QFd0000000306MAA",
1577
+ "fields": {
1578
+ "FirstName": "Daniel",
1579
+ "LastName": "Park",
1580
+ "Name": "Daniel Park",
1581
+ "Company": "Halcyon Biotech",
1582
+ "Title": "VP Research",
1583
+ "Email": "daniel.park@halcyon-bio.example.org",
1584
+ "Phone": "+82 2 555 0306",
1585
+ "Website": null,
1586
+ "Status": "Open - Not Contacted",
1587
+ "LeadSource": "Other",
1588
+ "Industry": "Biotechnology",
1589
+ "Rating": "Warm",
1590
+ "NumberOfEmployees": 150,
1591
+ "City": "Seoul",
1592
+ "Country": "South Korea",
1593
+ "Description": null,
1594
+ "IsConverted": false,
1595
+ "ConvertedDate": null,
1596
+ "ConvertedAccountId": null,
1597
+ "ConvertedContactId": null,
1598
+ "ConvertedOpportunityId": null,
1599
+ "OwnerId": "005Fd0000000004IAA"
1600
+ },
1601
+ "IsDeleted": false,
1602
+ "DeletedDate": null,
1603
+ "CreatedDate": "2026-09-12T07:45:00.000+0000",
1604
+ "CreatedById": "005Fd0000000004IAA",
1605
+ "LastModifiedDate": "2026-09-12T07:45:00.000+0000",
1606
+ "LastModifiedById": "005Fd0000000004IAA",
1607
+ "SystemModstamp": "2026-09-12T07:45:00.000+0000"
1608
+ }
1609
+ },
1610
+ {
1611
+ "action": "upsert",
1612
+ "packageId": "salesforce",
1613
+ "namespace": "leads",
1614
+ "rowId": "00QFd0000000307MAA",
1615
+ "value": {
1616
+ "Id": "00QFd0000000307MAA",
1617
+ "fields": {
1618
+ "FirstName": "Ingrid",
1619
+ "LastName": "Nilsen",
1620
+ "Name": "Ingrid Nilsen",
1621
+ "Company": "Fjord Analytics",
1622
+ "Title": "CTO",
1623
+ "Email": "ingrid.nilsen@fjord-analytics.example.org",
1624
+ "Phone": "+47 22 55 50 307",
1625
+ "Website": null,
1626
+ "Status": "Working - Contacted",
1627
+ "LeadSource": "Web",
1628
+ "Industry": "Technology",
1629
+ "Rating": "Cold",
1630
+ "NumberOfEmployees": 20,
1631
+ "City": "Bergen",
1632
+ "Country": "Norway",
1633
+ "Description": null,
1634
+ "IsConverted": false,
1635
+ "ConvertedDate": null,
1636
+ "ConvertedAccountId": null,
1637
+ "ConvertedContactId": null,
1638
+ "ConvertedOpportunityId": null,
1639
+ "OwnerId": "005Fd0000000003IAA"
1640
+ },
1641
+ "IsDeleted": false,
1642
+ "DeletedDate": null,
1643
+ "CreatedDate": "2026-05-20T09:00:00.000+0000",
1644
+ "CreatedById": "005Fd0000000003IAA",
1645
+ "LastModifiedDate": "2026-06-02T11:30:00.000+0000",
1646
+ "LastModifiedById": "005Fd0000000003IAA",
1647
+ "SystemModstamp": "2026-06-02T11:30:00.000+0000"
1648
+ }
1649
+ },
1650
+ {
1651
+ "action": "upsert",
1652
+ "packageId": "salesforce",
1653
+ "namespace": "leads",
1654
+ "rowId": "00QFd0000000308MAA",
1655
+ "value": {
1656
+ "Id": "00QFd0000000308MAA",
1657
+ "fields": {
1658
+ "FirstName": "Mateo",
1659
+ "LastName": "Silva",
1660
+ "Name": "Mateo Silva",
1661
+ "Company": "Helix Diagnostics Ltd",
1662
+ "Title": "Clinical Lead",
1663
+ "Email": "mateo.silva@helix-dx.example.org",
1664
+ "Phone": "+44 1223 555 0308",
1665
+ "Website": null,
1666
+ "Status": "Closed - Converted",
1667
+ "LeadSource": "Web",
1668
+ "Industry": "Healthcare",
1669
+ "Rating": "Hot",
1670
+ "NumberOfEmployees": 120,
1671
+ "City": "Cambridge",
1672
+ "Country": "United Kingdom",
1673
+ "Description": null,
1674
+ "IsConverted": true,
1675
+ "ConvertedDate": "2026-06-30",
1676
+ "ConvertedAccountId": "001Fd0000000102IAA",
1677
+ "ConvertedContactId": "003Fd0000000205IAA",
1678
+ "ConvertedOpportunityId": "006Fd0000000403IAA",
1679
+ "OwnerId": "005Fd0000000003IAA"
1680
+ },
1681
+ "IsDeleted": false,
1682
+ "DeletedDate": null,
1683
+ "CreatedDate": "2026-05-05T13:00:00.000+0000",
1684
+ "CreatedById": "005Fd0000000003IAA",
1685
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1686
+ "LastModifiedById": "005Fd0000000003IAA",
1687
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1688
+ }
1689
+ },
1690
+ {
1691
+ "action": "upsert",
1692
+ "packageId": "salesforce",
1693
+ "namespace": "opportunities",
1694
+ "rowId": "006Fd0000000401IAA",
1695
+ "value": {
1696
+ "Id": "006Fd0000000401IAA",
1697
+ "fields": {
1698
+ "Name": "Nordlicht Labs - Spectrometer Fleet Renewal",
1699
+ "AccountId": "001Fd0000000101IAA",
1700
+ "StageName": "Negotiation/Review",
1701
+ "Amount": 184000,
1702
+ "CloseDate": "2026-09-30",
1703
+ "Probability": 90,
1704
+ "Type": "Existing Customer - Upgrade",
1705
+ "LeadSource": "Web",
1706
+ "NextStep": "Legal review of the frame agreement",
1707
+ "Description": null,
1708
+ "IsClosed": false,
1709
+ "IsWon": false,
1710
+ "ForecastCategory": "Commit",
1711
+ "ForecastCategoryName": "Commit",
1712
+ "OwnerId": "005Fd0000000002IAA",
1713
+ "ARR__c": null
1714
+ },
1715
+ "IsDeleted": false,
1716
+ "DeletedDate": null,
1717
+ "CreatedDate": "2026-06-05T10:00:00.000+0000",
1718
+ "CreatedById": "005Fd0000000002IAA",
1719
+ "LastModifiedDate": "2026-09-02T15:45:00.000+0000",
1720
+ "LastModifiedById": "005Fd0000000002IAA",
1721
+ "SystemModstamp": "2026-09-02T15:45:00.000+0000"
1722
+ }
1723
+ },
1724
+ {
1725
+ "action": "upsert",
1726
+ "packageId": "salesforce",
1727
+ "namespace": "opportunities",
1728
+ "rowId": "006Fd0000000402IAA",
1729
+ "value": {
1730
+ "Id": "006Fd0000000402IAA",
1731
+ "fields": {
1732
+ "Name": "Nordlicht Labs - Service Contract 2027",
1733
+ "AccountId": "001Fd0000000101IAA",
1734
+ "StageName": "Proposal/Price Quote",
1735
+ "Amount": 42000,
1736
+ "CloseDate": "2026-10-15",
1737
+ "Probability": 75,
1738
+ "Type": "Existing Customer - Upgrade",
1739
+ "LeadSource": null,
1740
+ "NextStep": "Send revised quote",
1741
+ "Description": null,
1742
+ "IsClosed": false,
1743
+ "IsWon": false,
1744
+ "ForecastCategory": "BestCase",
1745
+ "ForecastCategoryName": "Best Case",
1746
+ "OwnerId": "005Fd0000000002IAA",
1747
+ "ARR__c": null
1748
+ },
1749
+ "IsDeleted": false,
1750
+ "DeletedDate": null,
1751
+ "CreatedDate": "2026-07-19T11:00:00.000+0000",
1752
+ "CreatedById": "005Fd0000000002IAA",
1753
+ "LastModifiedDate": "2026-08-30T09:15:00.000+0000",
1754
+ "LastModifiedById": "005Fd0000000002IAA",
1755
+ "SystemModstamp": "2026-08-30T09:15:00.000+0000"
1756
+ }
1757
+ },
1758
+ {
1759
+ "action": "upsert",
1760
+ "packageId": "salesforce",
1761
+ "namespace": "opportunities",
1762
+ "rowId": "006Fd0000000403IAA",
1763
+ "value": {
1764
+ "Id": "006Fd0000000403IAA",
1765
+ "fields": {
1766
+ "Name": "Helix Diagnostics - Clinical Analyzer Pilot",
1767
+ "AccountId": "001Fd0000000102IAA",
1768
+ "StageName": "Closed Won",
1769
+ "Amount": 96000,
1770
+ "CloseDate": "2026-06-30",
1771
+ "Probability": 100,
1772
+ "Type": "New Customer",
1773
+ "LeadSource": "Web",
1774
+ "NextStep": null,
1775
+ "Description": null,
1776
+ "IsClosed": true,
1777
+ "IsWon": true,
1778
+ "ForecastCategory": "Closed",
1779
+ "ForecastCategoryName": "Closed",
1780
+ "OwnerId": "005Fd0000000003IAA",
1781
+ "ARR__c": 96000
1782
+ },
1783
+ "IsDeleted": false,
1784
+ "DeletedDate": null,
1785
+ "CreatedDate": "2026-05-06T12:00:00.000+0000",
1786
+ "CreatedById": "005Fd0000000003IAA",
1787
+ "LastModifiedDate": "2026-06-30T15:00:00.000+0000",
1788
+ "LastModifiedById": "005Fd0000000003IAA",
1789
+ "SystemModstamp": "2026-06-30T15:00:00.000+0000"
1790
+ }
1791
+ },
1792
+ {
1793
+ "action": "upsert",
1794
+ "packageId": "salesforce",
1795
+ "namespace": "opportunities",
1796
+ "rowId": "006Fd0000000404IAA",
1797
+ "value": {
1798
+ "Id": "006Fd0000000404IAA",
1799
+ "fields": {
1800
+ "Name": "Helix Diagnostics - Expansion Phase 2",
1801
+ "AccountId": "001Fd0000000102IAA",
1802
+ "StageName": "Qualification",
1803
+ "Amount": null,
1804
+ "CloseDate": "2026-11-30",
1805
+ "Probability": 10,
1806
+ "Type": "Existing Customer - Upgrade",
1807
+ "LeadSource": null,
1808
+ "NextStep": "Scope the second analyzer line",
1809
+ "Description": null,
1810
+ "IsClosed": false,
1811
+ "IsWon": false,
1812
+ "ForecastCategory": "Pipeline",
1813
+ "ForecastCategoryName": "Pipeline",
1814
+ "OwnerId": "005Fd0000000003IAA",
1815
+ "ARR__c": null
1816
+ },
1817
+ "IsDeleted": false,
1818
+ "DeletedDate": null,
1819
+ "CreatedDate": "2026-08-21T09:00:00.000+0000",
1820
+ "CreatedById": "005Fd0000000003IAA",
1821
+ "LastModifiedDate": "2026-08-21T09:00:00.000+0000",
1822
+ "LastModifiedById": "005Fd0000000003IAA",
1823
+ "SystemModstamp": "2026-08-21T09:00:00.000+0000"
1824
+ }
1825
+ },
1826
+ {
1827
+ "action": "upsert",
1828
+ "packageId": "salesforce",
1829
+ "namespace": "opportunities",
1830
+ "rowId": "006Fd0000000405IAA",
1831
+ "value": {
1832
+ "Id": "006Fd0000000405IAA",
1833
+ "fields": {
1834
+ "Name": "Alder Creek - Starter Bench Kit",
1835
+ "AccountId": "001Fd0000000103IAA",
1836
+ "StageName": "Prospecting",
1837
+ "Amount": 8500,
1838
+ "CloseDate": "2026-09-25",
1839
+ "Probability": 10,
1840
+ "Type": "New Customer",
1841
+ "LeadSource": null,
1842
+ "NextStep": null,
1843
+ "Description": null,
1844
+ "IsClosed": false,
1845
+ "IsWon": false,
1846
+ "ForecastCategory": "Pipeline",
1847
+ "ForecastCategoryName": "Pipeline",
1848
+ "OwnerId": "005Fd0000000002IAA",
1849
+ "ARR__c": null
1850
+ },
1851
+ "IsDeleted": false,
1852
+ "DeletedDate": null,
1853
+ "CreatedDate": "2026-08-12T16:30:00.000+0000",
1854
+ "CreatedById": "005Fd0000000002IAA",
1855
+ "LastModifiedDate": "2026-08-12T16:30:00.000+0000",
1856
+ "LastModifiedById": "005Fd0000000002IAA",
1857
+ "SystemModstamp": "2026-08-12T16:30:00.000+0000"
1858
+ }
1859
+ },
1860
+ {
1861
+ "action": "upsert",
1862
+ "packageId": "salesforce",
1863
+ "namespace": "opportunities",
1864
+ "rowId": "006Fd0000000406IAA",
1865
+ "value": {
1866
+ "Id": "006Fd0000000406IAA",
1867
+ "fields": {
1868
+ "Name": "Vantage Biosciences - Calibration Suite",
1869
+ "AccountId": "001Fd0000000104IAA",
1870
+ "StageName": "Closed Lost",
1871
+ "Amount": 0,
1872
+ "CloseDate": "2026-08-20",
1873
+ "Probability": 0,
1874
+ "Type": "New Customer",
1875
+ "LeadSource": null,
1876
+ "NextStep": null,
1877
+ "Description": "Lost to an in-house solution.",
1878
+ "IsClosed": true,
1879
+ "IsWon": false,
1880
+ "ForecastCategory": "Omitted",
1881
+ "ForecastCategoryName": "Omitted",
1882
+ "OwnerId": "005Fd0000000003IAA",
1883
+ "ARR__c": null
1884
+ },
1885
+ "IsDeleted": false,
1886
+ "DeletedDate": null,
1887
+ "CreatedDate": "2026-06-20T10:00:00.000+0000",
1888
+ "CreatedById": "005Fd0000000003IAA",
1889
+ "LastModifiedDate": "2026-08-20T10:00:00.000+0000",
1890
+ "LastModifiedById": "005Fd0000000003IAA",
1891
+ "SystemModstamp": "2026-08-20T10:00:00.000+0000"
1892
+ }
1893
+ },
1894
+ {
1895
+ "action": "upsert",
1896
+ "packageId": "salesforce",
1897
+ "namespace": "opportunities",
1898
+ "rowId": "006Fd0000000407IAA",
1899
+ "value": {
1900
+ "Id": "006Fd0000000407IAA",
1901
+ "fields": {
1902
+ "Name": "O'Neill Diagnostics - Reagent Subscription",
1903
+ "AccountId": "001Fd0000000105IAA",
1904
+ "StageName": "Qualification",
1905
+ "Amount": 27500,
1906
+ "CloseDate": "2026-12-10",
1907
+ "Probability": 10,
1908
+ "Type": "Existing Customer - Upgrade",
1909
+ "LeadSource": null,
1910
+ "NextStep": null,
1911
+ "Description": null,
1912
+ "IsClosed": false,
1913
+ "IsWon": false,
1914
+ "ForecastCategory": "Pipeline",
1915
+ "ForecastCategoryName": "Pipeline",
1916
+ "OwnerId": "005Fd0000000002IAA",
1917
+ "ARR__c": null
1918
+ },
1919
+ "IsDeleted": false,
1920
+ "DeletedDate": null,
1921
+ "CreatedDate": "2026-08-05T14:00:00.000+0000",
1922
+ "CreatedById": "005Fd0000000002IAA",
1923
+ "LastModifiedDate": "2026-08-05T14:00:00.000+0000",
1924
+ "LastModifiedById": "005Fd0000000002IAA",
1925
+ "SystemModstamp": "2026-08-05T14:00:00.000+0000"
1926
+ }
1927
+ },
1928
+ {
1929
+ "action": "upsert",
1930
+ "packageId": "salesforce",
1931
+ "namespace": "opportunities",
1932
+ "rowId": "006Fd0000000408IAA",
1933
+ "value": {
1934
+ "Id": "006Fd0000000408IAA",
1935
+ "fields": {
1936
+ "Name": "Meridian Instruments - OEM Partnership",
1937
+ "AccountId": "001Fd0000000106IAA",
1938
+ "StageName": "Proposal/Price Quote",
1939
+ "Amount": 150000,
1940
+ "CloseDate": "2026-12-31",
1941
+ "Probability": 75,
1942
+ "Type": "New Customer",
1943
+ "LeadSource": "Partner Referral",
1944
+ "NextStep": "Draft OEM terms",
1945
+ "Description": null,
1946
+ "IsClosed": false,
1947
+ "IsWon": false,
1948
+ "ForecastCategory": "BestCase",
1949
+ "ForecastCategoryName": "Best Case",
1950
+ "OwnerId": "005Fd0000000001IAA",
1951
+ "ARR__c": null
1952
+ },
1953
+ "IsDeleted": false,
1954
+ "DeletedDate": null,
1955
+ "CreatedDate": "2026-07-30T09:30:00.000+0000",
1956
+ "CreatedById": "005Fd0000000001IAA",
1957
+ "LastModifiedDate": "2026-09-05T11:00:00.000+0000",
1958
+ "LastModifiedById": "005Fd0000000001IAA",
1959
+ "SystemModstamp": "2026-09-05T11:00:00.000+0000"
1960
+ }
1961
+ },
1962
+ {
1963
+ "action": "upsert",
1964
+ "packageId": "salesforce",
1965
+ "namespace": "opportunities",
1966
+ "rowId": "006Fd0000000409IAA",
1967
+ "value": {
1968
+ "Id": "006Fd0000000409IAA",
1969
+ "fields": {
1970
+ "Name": "Kestrel Environmental - Field Sensors",
1971
+ "AccountId": "001Fd0000000108IAA",
1972
+ "StageName": "Prospecting",
1973
+ "Amount": 60000,
1974
+ "CloseDate": "2026-10-31",
1975
+ "Probability": 10,
1976
+ "Type": "New Customer",
1977
+ "LeadSource": null,
1978
+ "NextStep": null,
1979
+ "Description": null,
1980
+ "IsClosed": false,
1981
+ "IsWon": false,
1982
+ "ForecastCategory": "Pipeline",
1983
+ "ForecastCategoryName": "Pipeline",
1984
+ "OwnerId": "005Fd0000000006IAA",
1985
+ "ARR__c": null
1986
+ },
1987
+ "IsDeleted": false,
1988
+ "DeletedDate": null,
1989
+ "CreatedDate": "2026-07-15T10:00:00.000+0000",
1990
+ "CreatedById": "005Fd0000000006IAA",
1991
+ "LastModifiedDate": "2026-07-15T10:00:00.000+0000",
1992
+ "LastModifiedById": "005Fd0000000006IAA",
1993
+ "SystemModstamp": "2026-07-15T10:00:00.000+0000"
1994
+ }
1995
+ },
1996
+ {
1997
+ "action": "upsert",
1998
+ "packageId": "salesforce",
1999
+ "namespace": "tasks",
2000
+ "rowId": "00TFd0000000501MAA",
2001
+ "value": {
2002
+ "Id": "00TFd0000000501MAA",
2003
+ "fields": {
2004
+ "Subject": "Send renewal proposal",
2005
+ "Status": "Not Started",
2006
+ "Priority": "High",
2007
+ "ActivityDate": "2026-09-14",
2008
+ "Description": "Attach the revised frame agreement.",
2009
+ "WhoId": "003Fd0000000201IAA",
2010
+ "WhatId": "006Fd0000000401IAA",
2011
+ "IsClosed": false,
2012
+ "OwnerId": "005Fd0000000002IAA"
2013
+ },
2014
+ "IsDeleted": false,
2015
+ "DeletedDate": null,
2016
+ "CreatedDate": "2026-09-10T09:00:00.000+0000",
2017
+ "CreatedById": "005Fd0000000002IAA",
2018
+ "LastModifiedDate": "2026-09-10T09:00:00.000+0000",
2019
+ "LastModifiedById": "005Fd0000000002IAA",
2020
+ "SystemModstamp": "2026-09-10T09:00:00.000+0000"
2021
+ }
2022
+ },
2023
+ {
2024
+ "action": "upsert",
2025
+ "packageId": "salesforce",
2026
+ "namespace": "tasks",
2027
+ "rowId": "00TFd0000000502MAA",
2028
+ "value": {
2029
+ "Id": "00TFd0000000502MAA",
2030
+ "fields": {
2031
+ "Subject": "Call about pilot results",
2032
+ "Status": "Completed",
2033
+ "Priority": "Normal",
2034
+ "ActivityDate": "2026-07-05",
2035
+ "Description": null,
2036
+ "WhoId": "003Fd0000000204IAA",
2037
+ "WhatId": "006Fd0000000403IAA",
2038
+ "IsClosed": true,
2039
+ "OwnerId": "005Fd0000000003IAA"
2040
+ },
2041
+ "IsDeleted": false,
2042
+ "DeletedDate": null,
2043
+ "CreatedDate": "2026-07-01T08:30:00.000+0000",
2044
+ "CreatedById": "005Fd0000000003IAA",
2045
+ "LastModifiedDate": "2026-07-05T10:00:00.000+0000",
2046
+ "LastModifiedById": "005Fd0000000003IAA",
2047
+ "SystemModstamp": "2026-07-05T10:00:00.000+0000"
2048
+ }
2049
+ },
2050
+ {
2051
+ "action": "upsert",
2052
+ "packageId": "salesforce",
2053
+ "namespace": "tasks",
2054
+ "rowId": "00TFd0000000503MAA",
2055
+ "value": {
2056
+ "Id": "00TFd0000000503MAA",
2057
+ "fields": {
2058
+ "Subject": "Qualify budget",
2059
+ "Status": "In Progress",
2060
+ "Priority": "Normal",
2061
+ "ActivityDate": "2026-09-16",
2062
+ "Description": null,
2063
+ "WhoId": "00QFd0000000301MAA",
2064
+ "WhatId": null,
2065
+ "IsClosed": false,
2066
+ "OwnerId": "005Fd0000000004IAA"
2067
+ },
2068
+ "IsDeleted": false,
2069
+ "DeletedDate": null,
2070
+ "CreatedDate": "2026-09-11T10:00:00.000+0000",
2071
+ "CreatedById": "005Fd0000000004IAA",
2072
+ "LastModifiedDate": "2026-09-11T10:00:00.000+0000",
2073
+ "LastModifiedById": "005Fd0000000004IAA",
2074
+ "SystemModstamp": "2026-09-11T10:00:00.000+0000"
2075
+ }
2076
+ },
2077
+ {
2078
+ "action": "upsert",
2079
+ "packageId": "salesforce",
2080
+ "namespace": "tasks",
2081
+ "rowId": "00TFd0000000504MAA",
2082
+ "value": {
2083
+ "Id": "00TFd0000000504MAA",
2084
+ "fields": {
2085
+ "Subject": "Prepare OEM terms",
2086
+ "Status": "Not Started",
2087
+ "Priority": "Normal",
2088
+ "ActivityDate": "2026-09-20",
2089
+ "Description": null,
2090
+ "WhoId": null,
2091
+ "WhatId": "006Fd0000000408IAA",
2092
+ "IsClosed": false,
2093
+ "OwnerId": "005Fd0000000001IAA"
2094
+ },
2095
+ "IsDeleted": false,
2096
+ "DeletedDate": null,
2097
+ "CreatedDate": "2026-09-05T11:10:00.000+0000",
2098
+ "CreatedById": "005Fd0000000001IAA",
2099
+ "LastModifiedDate": "2026-09-05T11:10:00.000+0000",
2100
+ "LastModifiedById": "005Fd0000000001IAA",
2101
+ "SystemModstamp": "2026-09-05T11:10:00.000+0000"
2102
+ }
2103
+ },
2104
+ {
2105
+ "action": "upsert",
2106
+ "packageId": "salesforce",
2107
+ "namespace": "tasks",
2108
+ "rowId": "00TFd0000000505MAA",
2109
+ "value": {
2110
+ "Id": "00TFd0000000505MAA",
2111
+ "fields": {
2112
+ "Subject": "Schedule site visit",
2113
+ "Status": "Not Started",
2114
+ "Priority": "Low",
2115
+ "ActivityDate": "2026-09-01",
2116
+ "Description": null,
2117
+ "WhoId": "003Fd0000000205IAA",
2118
+ "WhatId": "001Fd0000000102IAA",
2119
+ "IsClosed": false,
2120
+ "OwnerId": "005Fd0000000003IAA"
2121
+ },
2122
+ "IsDeleted": false,
2123
+ "DeletedDate": null,
2124
+ "CreatedDate": "2026-08-21T09:30:00.000+0000",
2125
+ "CreatedById": "005Fd0000000003IAA",
2126
+ "LastModifiedDate": "2026-08-21T09:30:00.000+0000",
2127
+ "LastModifiedById": "005Fd0000000003IAA",
2128
+ "SystemModstamp": "2026-08-21T09:30:00.000+0000"
2129
+ }
2130
+ },
2131
+ {
2132
+ "action": "upsert",
2133
+ "packageId": "salesforce",
2134
+ "namespace": "tasks",
2135
+ "rowId": "00TFd0000000506MAA",
2136
+ "value": {
2137
+ "Id": "00TFd0000000506MAA",
2138
+ "fields": {
2139
+ "Subject": "Follow up on sensor spec",
2140
+ "Status": "Waiting on someone else",
2141
+ "Priority": "Normal",
2142
+ "ActivityDate": "2026-09-18",
2143
+ "Description": null,
2144
+ "WhoId": null,
2145
+ "WhatId": "006Fd0000000409IAA",
2146
+ "IsClosed": false,
2147
+ "OwnerId": "005Fd0000000006IAA"
2148
+ },
2149
+ "IsDeleted": false,
2150
+ "DeletedDate": null,
2151
+ "CreatedDate": "2026-08-25T15:00:00.000+0000",
2152
+ "CreatedById": "005Fd0000000006IAA",
2153
+ "LastModifiedDate": "2026-08-25T15:00:00.000+0000",
2154
+ "LastModifiedById": "005Fd0000000006IAA",
2155
+ "SystemModstamp": "2026-08-25T15:00:00.000+0000"
2156
+ }
2157
+ },
2158
+ {
2159
+ "action": "upsert",
2160
+ "packageId": "salesforce",
2161
+ "namespace": "tasks",
2162
+ "rowId": "00TFd0000000507MAA",
2163
+ "value": {
2164
+ "Id": "00TFd0000000507MAA",
2165
+ "fields": {
2166
+ "Subject": "Intro email",
2167
+ "Status": "Not Started",
2168
+ "Priority": "Normal",
2169
+ "ActivityDate": "2026-09-15",
2170
+ "Description": null,
2171
+ "WhoId": "00QFd0000000306MAA",
2172
+ "WhatId": null,
2173
+ "IsClosed": false,
2174
+ "OwnerId": "005Fd0000000004IAA"
2175
+ },
2176
+ "IsDeleted": false,
2177
+ "DeletedDate": null,
2178
+ "CreatedDate": "2026-09-12T08:00:00.000+0000",
2179
+ "CreatedById": "005Fd0000000004IAA",
2180
+ "LastModifiedDate": "2026-09-12T08:00:00.000+0000",
2181
+ "LastModifiedById": "005Fd0000000004IAA",
2182
+ "SystemModstamp": "2026-09-12T08:00:00.000+0000"
2183
+ }
2184
+ },
2185
+ {
2186
+ "action": "upsert",
2187
+ "packageId": "salesforce",
2188
+ "namespace": "tasks",
2189
+ "rowId": "00TFd0000000508MAA",
2190
+ "value": {
2191
+ "Id": "00TFd0000000508MAA",
2192
+ "fields": {
2193
+ "Subject": "Review quality docs",
2194
+ "Status": "Deferred",
2195
+ "Priority": "Low",
2196
+ "ActivityDate": null,
2197
+ "Description": null,
2198
+ "WhoId": null,
2199
+ "WhatId": null,
2200
+ "IsClosed": false,
2201
+ "OwnerId": "005Fd0000000002IAA"
2202
+ },
2203
+ "IsDeleted": false,
2204
+ "DeletedDate": null,
2205
+ "CreatedDate": "2026-08-01T12:00:00.000+0000",
2206
+ "CreatedById": "005Fd0000000002IAA",
2207
+ "LastModifiedDate": "2026-08-01T12:00:00.000+0000",
2208
+ "LastModifiedById": "005Fd0000000002IAA",
2209
+ "SystemModstamp": "2026-08-01T12:00:00.000+0000"
2210
+ }
2211
+ }
2212
+ ]
2213
+ }