@firedrill-tools/linkedin 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 (111) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +189 -0
  3. package/firedrill/agent.target.json +16 -0
  4. package/firedrill/baseline.scenario.json +1834 -0
  5. package/firedrill/comment-throttled.scenario.json +11 -0
  6. package/firedrill/conformance.suite.json +27 -0
  7. package/firedrill/linkedin-comment-throttled.drill.json +51 -0
  8. package/firedrill/linkedin-comments-connection.drill.json +43 -0
  9. package/firedrill/linkedin-comments.drill.json +196 -0
  10. package/firedrill/linkedin-denied.drill.json +383 -0
  11. package/firedrill/linkedin-fresh-install.drill.json +43 -0
  12. package/firedrill/linkedin-identity.drill.json +73 -0
  13. package/firedrill/linkedin-invalid-token.drill.json +393 -0
  14. package/firedrill/linkedin-limited-scopes.drill.json +88 -0
  15. package/firedrill/linkedin-openid-only.drill.json +383 -0
  16. package/firedrill/linkedin-orgs-connection.drill.json +28 -0
  17. package/firedrill/linkedin-orgs-network.drill.json +193 -0
  18. package/firedrill/linkedin-post-lost-response.drill.json +61 -0
  19. package/firedrill/linkedin-posts-lifecycle.drill.json +228 -0
  20. package/firedrill/linkedin-reactions-metadata.drill.json +196 -0
  21. package/firedrill/linkedin-reactions-outage.drill.json +66 -0
  22. package/firedrill/linkedin-tight-limits.drill.json +228 -0
  23. package/firedrill/linkedin-ugc-legacy.drill.json +43 -0
  24. package/firedrill/linkedin-visibility-connection.drill.json +73 -0
  25. package/firedrill/linkedin-visibility-stranger.drill.json +88 -0
  26. package/firedrill/linkedin-wire-errors.drill.json +353 -0
  27. package/firedrill/post-lost-response.scenario.json +11 -0
  28. package/firedrill/reactions-outage.scenario.json +11 -0
  29. package/firedrill/tight-limits.scenario.json +16 -0
  30. package/firedrill/tools/linkedin/app/assets/ATTRIBUTION.md +28 -0
  31. package/firedrill/tools/linkedin/app/assets/fonts/OFL.txt +93 -0
  32. package/firedrill/tools/linkedin/app/assets/linkedin-in.svg +1 -0
  33. package/firedrill/tools/linkedin/app/assets/linkedin-wordmark.svg +1 -0
  34. package/firedrill/tools/linkedin/app/assets/linkedin.svg +1 -0
  35. package/firedrill/tools/linkedin/app/site/app.js +80 -0
  36. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-400-normal.woff2 +0 -0
  37. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-600-normal.woff2 +0 -0
  38. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-700-normal.woff2 +0 -0
  39. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-ext-400-normal.woff2 +0 -0
  40. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-ext-600-normal.woff2 +0 -0
  41. package/firedrill/tools/linkedin/app/site/assets/fonts/fira-sans-latin-ext-700-normal.woff2 +0 -0
  42. package/firedrill/tools/linkedin/app/site/assets/linkedin-wordmark.svg +1 -0
  43. package/firedrill/tools/linkedin/app/site/assets/linkedin.svg +1 -0
  44. package/firedrill/tools/linkedin/app/site/base.css +87 -0
  45. package/firedrill/tools/linkedin/app/site/comment-box.js +119 -0
  46. package/firedrill/tools/linkedin/app/site/comments.css +59 -0
  47. package/firedrill/tools/linkedin/app/site/comments.js +188 -0
  48. package/firedrill/tools/linkedin/app/site/company.js +115 -0
  49. package/firedrill/tools/linkedin/app/site/composer.js +112 -0
  50. package/firedrill/tools/linkedin/app/site/feed.css +105 -0
  51. package/firedrill/tools/linkedin/app/site/feed.js +134 -0
  52. package/firedrill/tools/linkedin/app/site/icons.js +70 -0
  53. package/firedrill/tools/linkedin/app/site/index.html +58 -0
  54. package/firedrill/tools/linkedin/app/site/nav.css +51 -0
  55. package/firedrill/tools/linkedin/app/site/network.js +77 -0
  56. package/firedrill/tools/linkedin/app/site/overlay.css +62 -0
  57. package/firedrill/tools/linkedin/app/site/overlay.js +108 -0
  58. package/firedrill/tools/linkedin/app/site/pages.css +78 -0
  59. package/firedrill/tools/linkedin/app/site/post-actions.js +83 -0
  60. package/firedrill/tools/linkedin/app/site/post-menu.js +72 -0
  61. package/firedrill/tools/linkedin/app/site/post.css +82 -0
  62. package/firedrill/tools/linkedin/app/site/post.js +131 -0
  63. package/firedrill/tools/linkedin/app/site/profile.js +139 -0
  64. package/firedrill/tools/linkedin/app/site/reactions.js +46 -0
  65. package/firedrill/tools/linkedin/app/site/reactors.js +71 -0
  66. package/firedrill/tools/linkedin/app/site/shell.js +107 -0
  67. package/firedrill/tools/linkedin/app/site/store.js +62 -0
  68. package/firedrill/tools/linkedin/app/site/text.js +80 -0
  69. package/firedrill/tools/linkedin/app/site/ui.js +142 -0
  70. package/firedrill/tools/linkedin/behavior.mjs +66 -0
  71. package/firedrill/tools/linkedin/lib/access.mjs +69 -0
  72. package/firedrill/tools/linkedin/lib/auth.mjs +115 -0
  73. package/firedrill/tools/linkedin/lib/cascade.mjs +28 -0
  74. package/firedrill/tools/linkedin/lib/errors.mjs +50 -0
  75. package/firedrill/tools/linkedin/lib/message.mjs +43 -0
  76. package/firedrill/tools/linkedin/lib/paging.mjs +54 -0
  77. package/firedrill/tools/linkedin/lib/postinput.mjs +47 -0
  78. package/firedrill/tools/linkedin/lib/render.mjs +95 -0
  79. package/firedrill/tools/linkedin/lib/routes.mjs +219 -0
  80. package/firedrill/tools/linkedin/lib/social.mjs +25 -0
  81. package/firedrill/tools/linkedin/lib/store.mjs +54 -0
  82. package/firedrill/tools/linkedin/lib/text.mjs +55 -0
  83. package/firedrill/tools/linkedin/lib/urn.mjs +93 -0
  84. package/firedrill/tools/linkedin/lib/wire.mjs +125 -0
  85. package/firedrill/tools/linkedin/linkedin.tool.json +8935 -0
  86. package/firedrill/tools/linkedin/ops/comments-read.mjs +57 -0
  87. package/firedrill/tools/linkedin/ops/comments-write.mjs +104 -0
  88. package/firedrill/tools/linkedin/ops/feed.mjs +74 -0
  89. package/firedrill/tools/linkedin/ops/network.mjs +46 -0
  90. package/firedrill/tools/linkedin/ops/orgs.mjs +93 -0
  91. package/firedrill/tools/linkedin/ops/posts-edit.mjs +71 -0
  92. package/firedrill/tools/linkedin/ops/posts-read.mjs +54 -0
  93. package/firedrill/tools/linkedin/ops/posts-write.mjs +74 -0
  94. package/firedrill/tools/linkedin/ops/profile.mjs +38 -0
  95. package/firedrill/tools/linkedin/ops/reactions.mjs +78 -0
  96. package/firedrill/tools/linkedin/ops/social.mjs +34 -0
  97. package/firedrill/world.json +2585 -0
  98. package/firedrill.json +5 -0
  99. package/package.json +52 -0
  100. package/starter.json +1833 -0
  101. package/test/client.mjs +71 -0
  102. package/test/conformance.mjs +20 -0
  103. package/test/fixtures.mjs +182 -0
  104. package/test/flows/comments.mjs +116 -0
  105. package/test/flows/every.mjs +38 -0
  106. package/test/flows/faults.mjs +56 -0
  107. package/test/flows/identity.mjs +70 -0
  108. package/test/flows/orgs.mjs +107 -0
  109. package/test/flows/posts.mjs +196 -0
  110. package/test/flows/reactions.mjs +101 -0
  111. package/test/flows/wire.mjs +62 -0
@@ -0,0 +1,2585 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "linkedin-conformance-world",
4
+ "title": "LinkedIn Tool conformance world (Northwind professional network)",
5
+ "virtualTimeUs": 1789480800000000,
6
+ "actors": [
7
+ {
8
+ "id": "member",
9
+ "description": "Maya Okafor (linkedinPersonId mOk4f0rPx1) with the full default scope set.",
10
+ "attributes": {
11
+ "linkedinPersonId": "mOk4f0rPx1"
12
+ },
13
+ "grants": [
14
+ {
15
+ "packageId": "linkedin",
16
+ "operationId": "profile.userinfo"
17
+ },
18
+ {
19
+ "packageId": "linkedin",
20
+ "operationId": "profile.me"
21
+ },
22
+ {
23
+ "packageId": "linkedin",
24
+ "operationId": "people.get"
25
+ },
26
+ {
27
+ "packageId": "linkedin",
28
+ "operationId": "posts.create"
29
+ },
30
+ {
31
+ "packageId": "linkedin",
32
+ "operationId": "posts.get"
33
+ },
34
+ {
35
+ "packageId": "linkedin",
36
+ "operationId": "posts.list_by_author"
37
+ },
38
+ {
39
+ "packageId": "linkedin",
40
+ "operationId": "posts.update"
41
+ },
42
+ {
43
+ "packageId": "linkedin",
44
+ "operationId": "posts.delete"
45
+ },
46
+ {
47
+ "packageId": "linkedin",
48
+ "operationId": "feed.list"
49
+ },
50
+ {
51
+ "packageId": "linkedin",
52
+ "operationId": "comments.create"
53
+ },
54
+ {
55
+ "packageId": "linkedin",
56
+ "operationId": "comments.list"
57
+ },
58
+ {
59
+ "packageId": "linkedin",
60
+ "operationId": "comments.get"
61
+ },
62
+ {
63
+ "packageId": "linkedin",
64
+ "operationId": "comments.update"
65
+ },
66
+ {
67
+ "packageId": "linkedin",
68
+ "operationId": "comments.delete"
69
+ },
70
+ {
71
+ "packageId": "linkedin",
72
+ "operationId": "reactions.create"
73
+ },
74
+ {
75
+ "packageId": "linkedin",
76
+ "operationId": "reactions.list"
77
+ },
78
+ {
79
+ "packageId": "linkedin",
80
+ "operationId": "reactions.delete"
81
+ },
82
+ {
83
+ "packageId": "linkedin",
84
+ "operationId": "social_metadata.get"
85
+ },
86
+ {
87
+ "packageId": "linkedin",
88
+ "operationId": "social_metadata.set_comments_state"
89
+ },
90
+ {
91
+ "packageId": "linkedin",
92
+ "operationId": "organizations.get"
93
+ },
94
+ {
95
+ "packageId": "linkedin",
96
+ "operationId": "organizations.find_by_vanity_name"
97
+ },
98
+ {
99
+ "packageId": "linkedin",
100
+ "operationId": "organization_acls.list"
101
+ },
102
+ {
103
+ "packageId": "linkedin",
104
+ "operationId": "network_sizes.get"
105
+ },
106
+ {
107
+ "packageId": "linkedin",
108
+ "operationId": "connections.list"
109
+ }
110
+ ]
111
+ },
112
+ {
113
+ "id": "fresh",
114
+ "description": "No identity attributes, like an actor created by `firedrill tool add`: acts as the network's default member Maya Okafor.",
115
+ "grants": [
116
+ {
117
+ "packageId": "linkedin",
118
+ "operationId": "profile.userinfo"
119
+ },
120
+ {
121
+ "packageId": "linkedin",
122
+ "operationId": "profile.me"
123
+ },
124
+ {
125
+ "packageId": "linkedin",
126
+ "operationId": "people.get"
127
+ },
128
+ {
129
+ "packageId": "linkedin",
130
+ "operationId": "posts.create"
131
+ },
132
+ {
133
+ "packageId": "linkedin",
134
+ "operationId": "posts.get"
135
+ },
136
+ {
137
+ "packageId": "linkedin",
138
+ "operationId": "posts.list_by_author"
139
+ },
140
+ {
141
+ "packageId": "linkedin",
142
+ "operationId": "posts.update"
143
+ },
144
+ {
145
+ "packageId": "linkedin",
146
+ "operationId": "posts.delete"
147
+ },
148
+ {
149
+ "packageId": "linkedin",
150
+ "operationId": "feed.list"
151
+ },
152
+ {
153
+ "packageId": "linkedin",
154
+ "operationId": "comments.create"
155
+ },
156
+ {
157
+ "packageId": "linkedin",
158
+ "operationId": "comments.list"
159
+ },
160
+ {
161
+ "packageId": "linkedin",
162
+ "operationId": "comments.get"
163
+ },
164
+ {
165
+ "packageId": "linkedin",
166
+ "operationId": "comments.update"
167
+ },
168
+ {
169
+ "packageId": "linkedin",
170
+ "operationId": "comments.delete"
171
+ },
172
+ {
173
+ "packageId": "linkedin",
174
+ "operationId": "reactions.create"
175
+ },
176
+ {
177
+ "packageId": "linkedin",
178
+ "operationId": "reactions.list"
179
+ },
180
+ {
181
+ "packageId": "linkedin",
182
+ "operationId": "reactions.delete"
183
+ },
184
+ {
185
+ "packageId": "linkedin",
186
+ "operationId": "social_metadata.get"
187
+ },
188
+ {
189
+ "packageId": "linkedin",
190
+ "operationId": "social_metadata.set_comments_state"
191
+ },
192
+ {
193
+ "packageId": "linkedin",
194
+ "operationId": "organizations.get"
195
+ },
196
+ {
197
+ "packageId": "linkedin",
198
+ "operationId": "organizations.find_by_vanity_name"
199
+ },
200
+ {
201
+ "packageId": "linkedin",
202
+ "operationId": "organization_acls.list"
203
+ },
204
+ {
205
+ "packageId": "linkedin",
206
+ "operationId": "network_sizes.get"
207
+ },
208
+ {
209
+ "packageId": "linkedin",
210
+ "operationId": "connections.list"
211
+ }
212
+ ]
213
+ },
214
+ {
215
+ "id": "connection",
216
+ "description": "Sam Whitfield: Maya's connection and Brightline Robotics administrator.",
217
+ "attributes": {
218
+ "linkedinPersonId": "sWh1tf1eld"
219
+ },
220
+ "grants": [
221
+ {
222
+ "packageId": "linkedin",
223
+ "operationId": "profile.userinfo"
224
+ },
225
+ {
226
+ "packageId": "linkedin",
227
+ "operationId": "profile.me"
228
+ },
229
+ {
230
+ "packageId": "linkedin",
231
+ "operationId": "people.get"
232
+ },
233
+ {
234
+ "packageId": "linkedin",
235
+ "operationId": "posts.create"
236
+ },
237
+ {
238
+ "packageId": "linkedin",
239
+ "operationId": "posts.get"
240
+ },
241
+ {
242
+ "packageId": "linkedin",
243
+ "operationId": "posts.list_by_author"
244
+ },
245
+ {
246
+ "packageId": "linkedin",
247
+ "operationId": "posts.update"
248
+ },
249
+ {
250
+ "packageId": "linkedin",
251
+ "operationId": "posts.delete"
252
+ },
253
+ {
254
+ "packageId": "linkedin",
255
+ "operationId": "feed.list"
256
+ },
257
+ {
258
+ "packageId": "linkedin",
259
+ "operationId": "comments.create"
260
+ },
261
+ {
262
+ "packageId": "linkedin",
263
+ "operationId": "comments.list"
264
+ },
265
+ {
266
+ "packageId": "linkedin",
267
+ "operationId": "comments.get"
268
+ },
269
+ {
270
+ "packageId": "linkedin",
271
+ "operationId": "comments.update"
272
+ },
273
+ {
274
+ "packageId": "linkedin",
275
+ "operationId": "comments.delete"
276
+ },
277
+ {
278
+ "packageId": "linkedin",
279
+ "operationId": "reactions.create"
280
+ },
281
+ {
282
+ "packageId": "linkedin",
283
+ "operationId": "reactions.list"
284
+ },
285
+ {
286
+ "packageId": "linkedin",
287
+ "operationId": "reactions.delete"
288
+ },
289
+ {
290
+ "packageId": "linkedin",
291
+ "operationId": "social_metadata.get"
292
+ },
293
+ {
294
+ "packageId": "linkedin",
295
+ "operationId": "social_metadata.set_comments_state"
296
+ },
297
+ {
298
+ "packageId": "linkedin",
299
+ "operationId": "organizations.get"
300
+ },
301
+ {
302
+ "packageId": "linkedin",
303
+ "operationId": "organizations.find_by_vanity_name"
304
+ },
305
+ {
306
+ "packageId": "linkedin",
307
+ "operationId": "organization_acls.list"
308
+ },
309
+ {
310
+ "packageId": "linkedin",
311
+ "operationId": "network_sizes.get"
312
+ },
313
+ {
314
+ "packageId": "linkedin",
315
+ "operationId": "connections.list"
316
+ }
317
+ ]
318
+ },
319
+ {
320
+ "id": "stranger",
321
+ "description": "Tomás Ibáñez: no connections, no e-mail address.",
322
+ "attributes": {
323
+ "linkedinPersonId": "tIb4n3zX0p"
324
+ },
325
+ "grants": [
326
+ {
327
+ "packageId": "linkedin",
328
+ "operationId": "profile.userinfo"
329
+ },
330
+ {
331
+ "packageId": "linkedin",
332
+ "operationId": "profile.me"
333
+ },
334
+ {
335
+ "packageId": "linkedin",
336
+ "operationId": "people.get"
337
+ },
338
+ {
339
+ "packageId": "linkedin",
340
+ "operationId": "posts.create"
341
+ },
342
+ {
343
+ "packageId": "linkedin",
344
+ "operationId": "posts.get"
345
+ },
346
+ {
347
+ "packageId": "linkedin",
348
+ "operationId": "posts.list_by_author"
349
+ },
350
+ {
351
+ "packageId": "linkedin",
352
+ "operationId": "posts.update"
353
+ },
354
+ {
355
+ "packageId": "linkedin",
356
+ "operationId": "posts.delete"
357
+ },
358
+ {
359
+ "packageId": "linkedin",
360
+ "operationId": "feed.list"
361
+ },
362
+ {
363
+ "packageId": "linkedin",
364
+ "operationId": "comments.create"
365
+ },
366
+ {
367
+ "packageId": "linkedin",
368
+ "operationId": "comments.list"
369
+ },
370
+ {
371
+ "packageId": "linkedin",
372
+ "operationId": "comments.get"
373
+ },
374
+ {
375
+ "packageId": "linkedin",
376
+ "operationId": "comments.update"
377
+ },
378
+ {
379
+ "packageId": "linkedin",
380
+ "operationId": "comments.delete"
381
+ },
382
+ {
383
+ "packageId": "linkedin",
384
+ "operationId": "reactions.create"
385
+ },
386
+ {
387
+ "packageId": "linkedin",
388
+ "operationId": "reactions.list"
389
+ },
390
+ {
391
+ "packageId": "linkedin",
392
+ "operationId": "reactions.delete"
393
+ },
394
+ {
395
+ "packageId": "linkedin",
396
+ "operationId": "social_metadata.get"
397
+ },
398
+ {
399
+ "packageId": "linkedin",
400
+ "operationId": "social_metadata.set_comments_state"
401
+ },
402
+ {
403
+ "packageId": "linkedin",
404
+ "operationId": "organizations.get"
405
+ },
406
+ {
407
+ "packageId": "linkedin",
408
+ "operationId": "organizations.find_by_vanity_name"
409
+ },
410
+ {
411
+ "packageId": "linkedin",
412
+ "operationId": "organization_acls.list"
413
+ },
414
+ {
415
+ "packageId": "linkedin",
416
+ "operationId": "network_sizes.get"
417
+ },
418
+ {
419
+ "packageId": "linkedin",
420
+ "operationId": "connections.list"
421
+ }
422
+ ]
423
+ },
424
+ {
425
+ "id": "limited",
426
+ "description": "Maya with a token limited to openid, profile and w_member_social.",
427
+ "attributes": {
428
+ "linkedinPersonId": "mOk4f0rPx1",
429
+ "linkedinScopes": [
430
+ "openid",
431
+ "profile",
432
+ "w_member_social"
433
+ ]
434
+ },
435
+ "grants": [
436
+ {
437
+ "packageId": "linkedin",
438
+ "operationId": "profile.userinfo"
439
+ },
440
+ {
441
+ "packageId": "linkedin",
442
+ "operationId": "profile.me"
443
+ },
444
+ {
445
+ "packageId": "linkedin",
446
+ "operationId": "people.get"
447
+ },
448
+ {
449
+ "packageId": "linkedin",
450
+ "operationId": "posts.create"
451
+ },
452
+ {
453
+ "packageId": "linkedin",
454
+ "operationId": "posts.get"
455
+ },
456
+ {
457
+ "packageId": "linkedin",
458
+ "operationId": "posts.list_by_author"
459
+ },
460
+ {
461
+ "packageId": "linkedin",
462
+ "operationId": "posts.update"
463
+ },
464
+ {
465
+ "packageId": "linkedin",
466
+ "operationId": "posts.delete"
467
+ },
468
+ {
469
+ "packageId": "linkedin",
470
+ "operationId": "feed.list"
471
+ },
472
+ {
473
+ "packageId": "linkedin",
474
+ "operationId": "comments.create"
475
+ },
476
+ {
477
+ "packageId": "linkedin",
478
+ "operationId": "comments.list"
479
+ },
480
+ {
481
+ "packageId": "linkedin",
482
+ "operationId": "comments.get"
483
+ },
484
+ {
485
+ "packageId": "linkedin",
486
+ "operationId": "comments.update"
487
+ },
488
+ {
489
+ "packageId": "linkedin",
490
+ "operationId": "comments.delete"
491
+ },
492
+ {
493
+ "packageId": "linkedin",
494
+ "operationId": "reactions.create"
495
+ },
496
+ {
497
+ "packageId": "linkedin",
498
+ "operationId": "reactions.list"
499
+ },
500
+ {
501
+ "packageId": "linkedin",
502
+ "operationId": "reactions.delete"
503
+ },
504
+ {
505
+ "packageId": "linkedin",
506
+ "operationId": "social_metadata.get"
507
+ },
508
+ {
509
+ "packageId": "linkedin",
510
+ "operationId": "social_metadata.set_comments_state"
511
+ },
512
+ {
513
+ "packageId": "linkedin",
514
+ "operationId": "organizations.get"
515
+ },
516
+ {
517
+ "packageId": "linkedin",
518
+ "operationId": "organizations.find_by_vanity_name"
519
+ },
520
+ {
521
+ "packageId": "linkedin",
522
+ "operationId": "organization_acls.list"
523
+ },
524
+ {
525
+ "packageId": "linkedin",
526
+ "operationId": "network_sizes.get"
527
+ },
528
+ {
529
+ "packageId": "linkedin",
530
+ "operationId": "connections.list"
531
+ }
532
+ ]
533
+ },
534
+ {
535
+ "id": "openid-only",
536
+ "description": "Maya with a token holding only the openid scope.",
537
+ "attributes": {
538
+ "linkedinPersonId": "mOk4f0rPx1",
539
+ "linkedinScopes": [
540
+ "openid"
541
+ ]
542
+ },
543
+ "grants": [
544
+ {
545
+ "packageId": "linkedin",
546
+ "operationId": "profile.userinfo"
547
+ },
548
+ {
549
+ "packageId": "linkedin",
550
+ "operationId": "profile.me"
551
+ },
552
+ {
553
+ "packageId": "linkedin",
554
+ "operationId": "people.get"
555
+ },
556
+ {
557
+ "packageId": "linkedin",
558
+ "operationId": "posts.create"
559
+ },
560
+ {
561
+ "packageId": "linkedin",
562
+ "operationId": "posts.get"
563
+ },
564
+ {
565
+ "packageId": "linkedin",
566
+ "operationId": "posts.list_by_author"
567
+ },
568
+ {
569
+ "packageId": "linkedin",
570
+ "operationId": "posts.update"
571
+ },
572
+ {
573
+ "packageId": "linkedin",
574
+ "operationId": "posts.delete"
575
+ },
576
+ {
577
+ "packageId": "linkedin",
578
+ "operationId": "feed.list"
579
+ },
580
+ {
581
+ "packageId": "linkedin",
582
+ "operationId": "comments.create"
583
+ },
584
+ {
585
+ "packageId": "linkedin",
586
+ "operationId": "comments.list"
587
+ },
588
+ {
589
+ "packageId": "linkedin",
590
+ "operationId": "comments.get"
591
+ },
592
+ {
593
+ "packageId": "linkedin",
594
+ "operationId": "comments.update"
595
+ },
596
+ {
597
+ "packageId": "linkedin",
598
+ "operationId": "comments.delete"
599
+ },
600
+ {
601
+ "packageId": "linkedin",
602
+ "operationId": "reactions.create"
603
+ },
604
+ {
605
+ "packageId": "linkedin",
606
+ "operationId": "reactions.list"
607
+ },
608
+ {
609
+ "packageId": "linkedin",
610
+ "operationId": "reactions.delete"
611
+ },
612
+ {
613
+ "packageId": "linkedin",
614
+ "operationId": "social_metadata.get"
615
+ },
616
+ {
617
+ "packageId": "linkedin",
618
+ "operationId": "social_metadata.set_comments_state"
619
+ },
620
+ {
621
+ "packageId": "linkedin",
622
+ "operationId": "organizations.get"
623
+ },
624
+ {
625
+ "packageId": "linkedin",
626
+ "operationId": "organizations.find_by_vanity_name"
627
+ },
628
+ {
629
+ "packageId": "linkedin",
630
+ "operationId": "organization_acls.list"
631
+ },
632
+ {
633
+ "packageId": "linkedin",
634
+ "operationId": "network_sizes.get"
635
+ },
636
+ {
637
+ "packageId": "linkedin",
638
+ "operationId": "connections.list"
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "id": "revoked",
644
+ "description": "A token for a member id that does not exist: every operation answers 401 INVALID_ACCESS_TOKEN.",
645
+ "attributes": {
646
+ "linkedinPersonId": "zzzzzzzzzz"
647
+ },
648
+ "grants": [
649
+ {
650
+ "packageId": "linkedin",
651
+ "operationId": "profile.userinfo"
652
+ },
653
+ {
654
+ "packageId": "linkedin",
655
+ "operationId": "profile.me"
656
+ },
657
+ {
658
+ "packageId": "linkedin",
659
+ "operationId": "people.get"
660
+ },
661
+ {
662
+ "packageId": "linkedin",
663
+ "operationId": "posts.create"
664
+ },
665
+ {
666
+ "packageId": "linkedin",
667
+ "operationId": "posts.get"
668
+ },
669
+ {
670
+ "packageId": "linkedin",
671
+ "operationId": "posts.list_by_author"
672
+ },
673
+ {
674
+ "packageId": "linkedin",
675
+ "operationId": "posts.update"
676
+ },
677
+ {
678
+ "packageId": "linkedin",
679
+ "operationId": "posts.delete"
680
+ },
681
+ {
682
+ "packageId": "linkedin",
683
+ "operationId": "feed.list"
684
+ },
685
+ {
686
+ "packageId": "linkedin",
687
+ "operationId": "comments.create"
688
+ },
689
+ {
690
+ "packageId": "linkedin",
691
+ "operationId": "comments.list"
692
+ },
693
+ {
694
+ "packageId": "linkedin",
695
+ "operationId": "comments.get"
696
+ },
697
+ {
698
+ "packageId": "linkedin",
699
+ "operationId": "comments.update"
700
+ },
701
+ {
702
+ "packageId": "linkedin",
703
+ "operationId": "comments.delete"
704
+ },
705
+ {
706
+ "packageId": "linkedin",
707
+ "operationId": "reactions.create"
708
+ },
709
+ {
710
+ "packageId": "linkedin",
711
+ "operationId": "reactions.list"
712
+ },
713
+ {
714
+ "packageId": "linkedin",
715
+ "operationId": "reactions.delete"
716
+ },
717
+ {
718
+ "packageId": "linkedin",
719
+ "operationId": "social_metadata.get"
720
+ },
721
+ {
722
+ "packageId": "linkedin",
723
+ "operationId": "social_metadata.set_comments_state"
724
+ },
725
+ {
726
+ "packageId": "linkedin",
727
+ "operationId": "organizations.get"
728
+ },
729
+ {
730
+ "packageId": "linkedin",
731
+ "operationId": "organizations.find_by_vanity_name"
732
+ },
733
+ {
734
+ "packageId": "linkedin",
735
+ "operationId": "organization_acls.list"
736
+ },
737
+ {
738
+ "packageId": "linkedin",
739
+ "operationId": "network_sizes.get"
740
+ },
741
+ {
742
+ "packageId": "linkedin",
743
+ "operationId": "connections.list"
744
+ }
745
+ ]
746
+ },
747
+ {
748
+ "id": "no-grants",
749
+ "description": "Maya without Firedrill grants: every call is denied before the Tool runs.",
750
+ "attributes": {
751
+ "linkedinPersonId": "mOk4f0rPx1"
752
+ },
753
+ "grants": []
754
+ }
755
+ ],
756
+ "state": [
757
+ {
758
+ "action": "upsert",
759
+ "packageId": "linkedin",
760
+ "namespace": "meta",
761
+ "rowId": "network",
762
+ "value": {
763
+ "name": "Northwind professional network",
764
+ "defaultPersonId": "mOk4f0rPx1"
765
+ }
766
+ },
767
+ {
768
+ "action": "upsert",
769
+ "packageId": "linkedin",
770
+ "namespace": "meta",
771
+ "rowId": "counters",
772
+ "value": {
773
+ "seq": 50
774
+ }
775
+ },
776
+ {
777
+ "action": "upsert",
778
+ "packageId": "linkedin",
779
+ "namespace": "meta",
780
+ "rowId": "limits",
781
+ "value": {
782
+ "maxScanRows": 5000
783
+ }
784
+ },
785
+ {
786
+ "action": "upsert",
787
+ "packageId": "linkedin",
788
+ "namespace": "people",
789
+ "rowId": "mOk4f0rPx1",
790
+ "value": {
791
+ "id": "mOk4f0rPx1",
792
+ "firstName": "Maya",
793
+ "lastName": "Okafor",
794
+ "headline": "Head of Data Platform at Northwind Analytics",
795
+ "vanityName": "maya-okafor",
796
+ "email": "maya.okafor@example.com",
797
+ "emailVerified": true,
798
+ "locale": {
799
+ "country": "US",
800
+ "language": "en"
801
+ },
802
+ "pictureUrl": "https://media.example.com/profiles/mOk4f0rPx1.jpg",
803
+ "location": "San Francisco Bay Area",
804
+ "followingOrganizationIds": [
805
+ 81234567,
806
+ 81234568
807
+ ],
808
+ "createdAtMs": 1711720800000
809
+ }
810
+ },
811
+ {
812
+ "action": "upsert",
813
+ "packageId": "linkedin",
814
+ "namespace": "people",
815
+ "rowId": "sWh1tf1eld",
816
+ "value": {
817
+ "id": "sWh1tf1eld",
818
+ "firstName": "Sam",
819
+ "lastName": "Whitfield",
820
+ "headline": "Robotics Program Lead at Brightline Robotics",
821
+ "vanityName": "sam-whitfield",
822
+ "email": "sam.whitfield@example.com",
823
+ "emailVerified": true,
824
+ "locale": {
825
+ "country": "US",
826
+ "language": "en"
827
+ },
828
+ "pictureUrl": "https://media.example.com/profiles/sWh1tf1eld.jpg",
829
+ "location": "Pittsburgh, Pennsylvania",
830
+ "followingOrganizationIds": [],
831
+ "createdAtMs": 1711720800000
832
+ }
833
+ },
834
+ {
835
+ "action": "upsert",
836
+ "packageId": "linkedin",
837
+ "namespace": "people",
838
+ "rowId": "pR4manQ7xz",
839
+ "value": {
840
+ "id": "pR4manQ7xz",
841
+ "firstName": "Priya",
842
+ "lastName": "Raman",
843
+ "headline": "Content Strategist at Northwind Analytics",
844
+ "vanityName": "priya-raman",
845
+ "email": "priya.raman@example.com",
846
+ "emailVerified": true,
847
+ "locale": {
848
+ "country": "US",
849
+ "language": "en"
850
+ },
851
+ "pictureUrl": "https://media.example.com/profiles/pR4manQ7xz.jpg",
852
+ "location": "San Francisco Bay Area",
853
+ "followingOrganizationIds": [
854
+ 81234567
855
+ ],
856
+ "createdAtMs": 1711720800000
857
+ }
858
+ },
859
+ {
860
+ "action": "upsert",
861
+ "packageId": "linkedin",
862
+ "namespace": "people",
863
+ "rowId": "lC4rv4lho0",
864
+ "value": {
865
+ "id": "lC4rv4lho0",
866
+ "firstName": "Luis",
867
+ "lastName": "Carvalho",
868
+ "headline": "Former Operations Manager at Northwind Analytics",
869
+ "vanityName": "luis-carvalho",
870
+ "email": "luis.carvalho@example.com",
871
+ "emailVerified": true,
872
+ "locale": {
873
+ "country": "BR",
874
+ "language": "pt"
875
+ },
876
+ "pictureUrl": "https://media.example.com/profiles/lC4rv4lho0.jpg",
877
+ "location": "Lisbon",
878
+ "followingOrganizationIds": [],
879
+ "createdAtMs": 1711720800000
880
+ }
881
+ },
882
+ {
883
+ "action": "upsert",
884
+ "packageId": "linkedin",
885
+ "namespace": "people",
886
+ "rowId": "zLuk4s1ew1",
887
+ "value": {
888
+ "id": "zLuk4s1ew1",
889
+ "firstName": "Zoë",
890
+ "lastName": "Łukasiewicz",
891
+ "headline": null,
892
+ "vanityName": "zoe-lukasiewicz",
893
+ "email": "zoe.lukasiewicz@example.com",
894
+ "emailVerified": true,
895
+ "locale": {
896
+ "country": "PL",
897
+ "language": "pl"
898
+ },
899
+ "pictureUrl": "https://media.example.com/profiles/zLuk4s1ew1.jpg",
900
+ "location": "Kraków",
901
+ "followingOrganizationIds": [],
902
+ "createdAtMs": 1711720800000
903
+ }
904
+ },
905
+ {
906
+ "action": "upsert",
907
+ "packageId": "linkedin",
908
+ "namespace": "people",
909
+ "rowId": "dMens4hK2p",
910
+ "value": {
911
+ "id": "dMens4hK2p",
912
+ "firstName": "Daniel",
913
+ "lastName": "Mensah",
914
+ "headline": "Senior Data Engineer",
915
+ "vanityName": "daniel-mensah",
916
+ "email": "daniel.mensah@example.com",
917
+ "emailVerified": true,
918
+ "locale": {
919
+ "country": "US",
920
+ "language": "en"
921
+ },
922
+ "pictureUrl": "https://media.example.com/profiles/dMens4hK2p.jpg",
923
+ "location": "Accra",
924
+ "followingOrganizationIds": [],
925
+ "createdAtMs": 1711720800000
926
+ }
927
+ },
928
+ {
929
+ "action": "upsert",
930
+ "packageId": "linkedin",
931
+ "namespace": "people",
932
+ "rowId": "aT4nak4Rr8",
933
+ "value": {
934
+ "id": "aT4nak4Rr8",
935
+ "firstName": "Aiko",
936
+ "lastName": "Tanaka",
937
+ "headline": "Machine Learning Researcher at Lakeview Institute of Technology",
938
+ "vanityName": "aiko-tanaka",
939
+ "email": "aiko.tanaka@example.com",
940
+ "emailVerified": true,
941
+ "locale": {
942
+ "country": "US",
943
+ "language": "en"
944
+ },
945
+ "pictureUrl": "https://media.example.com/profiles/aT4nak4Rr8.jpg",
946
+ "location": "San Francisco Bay Area",
947
+ "followingOrganizationIds": [
948
+ 81234569
949
+ ],
950
+ "createdAtMs": 1711720800000
951
+ }
952
+ },
953
+ {
954
+ "action": "upsert",
955
+ "packageId": "linkedin",
956
+ "namespace": "people",
957
+ "rowId": "gOduy4Lm3n",
958
+ "value": {
959
+ "id": "gOduy4Lm3n",
960
+ "firstName": "Grace",
961
+ "lastName": "Oduya",
962
+ "headline": "Product Designer",
963
+ "vanityName": "grace-oduya",
964
+ "email": "grace.oduya@example.com",
965
+ "emailVerified": true,
966
+ "locale": {
967
+ "country": "US",
968
+ "language": "en"
969
+ },
970
+ "pictureUrl": "https://media.example.com/profiles/gOduy4Lm3n.jpg",
971
+ "location": "Nairobi",
972
+ "followingOrganizationIds": [],
973
+ "createdAtMs": 1711720800000
974
+ }
975
+ },
976
+ {
977
+ "action": "upsert",
978
+ "packageId": "linkedin",
979
+ "namespace": "people",
980
+ "rowId": "jR3yesVv0q",
981
+ "value": {
982
+ "id": "jR3yesVv0q",
983
+ "firstName": "Jordan",
984
+ "lastName": "Reyes",
985
+ "headline": "Founder, Reyes Field Studio",
986
+ "vanityName": "jordan-reyes",
987
+ "email": "jordan.reyes@example.com",
988
+ "emailVerified": true,
989
+ "locale": {
990
+ "country": "US",
991
+ "language": "en"
992
+ },
993
+ "pictureUrl": "https://media.example.com/profiles/jR3yesVv0q.jpg",
994
+ "location": "Austin, Texas",
995
+ "followingOrganizationIds": [],
996
+ "createdAtMs": 1711720800000
997
+ }
998
+ },
999
+ {
1000
+ "action": "upsert",
1001
+ "packageId": "linkedin",
1002
+ "namespace": "people",
1003
+ "rowId": "ePetr0v4Qs",
1004
+ "value": {
1005
+ "id": "ePetr0v4Qs",
1006
+ "firstName": "Elena",
1007
+ "lastName": "Petrova",
1008
+ "headline": "Analytics Consultant",
1009
+ "vanityName": "elena-petrova",
1010
+ "email": "elena.petrova@example.com",
1011
+ "emailVerified": true,
1012
+ "locale": {
1013
+ "country": "US",
1014
+ "language": "en"
1015
+ },
1016
+ "pictureUrl": "https://media.example.com/profiles/ePetr0v4Qs.jpg",
1017
+ "location": "Sofia",
1018
+ "followingOrganizationIds": [],
1019
+ "createdAtMs": 1711720800000
1020
+ }
1021
+ },
1022
+ {
1023
+ "action": "upsert",
1024
+ "packageId": "linkedin",
1025
+ "namespace": "people",
1026
+ "rowId": "tIb4n3zX0p",
1027
+ "value": {
1028
+ "id": "tIb4n3zX0p",
1029
+ "firstName": "Tomás",
1030
+ "lastName": "Ibáñez",
1031
+ "headline": "Independent UX Researcher",
1032
+ "vanityName": "tomas-ibanez",
1033
+ "email": null,
1034
+ "emailVerified": false,
1035
+ "locale": {
1036
+ "country": "ES",
1037
+ "language": "es"
1038
+ },
1039
+ "pictureUrl": null,
1040
+ "location": "Valencia",
1041
+ "followingOrganizationIds": [],
1042
+ "createdAtMs": 1711720800000
1043
+ }
1044
+ },
1045
+ {
1046
+ "action": "upsert",
1047
+ "packageId": "linkedin",
1048
+ "namespace": "people",
1049
+ "rowId": "nH4dd4dPq2",
1050
+ "value": {
1051
+ "id": "nH4dd4dPq2",
1052
+ "firstName": "Noor",
1053
+ "lastName": "Haddad",
1054
+ "headline": "Mechanical Engineer at Brightline Robotics",
1055
+ "vanityName": "noor-haddad",
1056
+ "email": "noor.haddad@example.com",
1057
+ "emailVerified": true,
1058
+ "locale": {
1059
+ "country": "US",
1060
+ "language": "en"
1061
+ },
1062
+ "pictureUrl": "https://media.example.com/profiles/nH4dd4dPq2.jpg",
1063
+ "location": "Amman",
1064
+ "followingOrganizationIds": [],
1065
+ "createdAtMs": 1711720800000
1066
+ }
1067
+ },
1068
+ {
1069
+ "action": "upsert",
1070
+ "packageId": "linkedin",
1071
+ "namespace": "connections",
1072
+ "rowId": "mOk4f0rPx1|sWh1tf1eld",
1073
+ "value": {
1074
+ "personId": "mOk4f0rPx1",
1075
+ "connectedPersonId": "sWh1tf1eld",
1076
+ "connectedAtMs": 1754920800000
1077
+ }
1078
+ },
1079
+ {
1080
+ "action": "upsert",
1081
+ "packageId": "linkedin",
1082
+ "namespace": "connections",
1083
+ "rowId": "sWh1tf1eld|mOk4f0rPx1",
1084
+ "value": {
1085
+ "personId": "sWh1tf1eld",
1086
+ "connectedPersonId": "mOk4f0rPx1",
1087
+ "connectedAtMs": 1754920800000
1088
+ }
1089
+ },
1090
+ {
1091
+ "action": "upsert",
1092
+ "packageId": "linkedin",
1093
+ "namespace": "connections",
1094
+ "rowId": "mOk4f0rPx1|pR4manQ7xz",
1095
+ "value": {
1096
+ "personId": "mOk4f0rPx1",
1097
+ "connectedPersonId": "pR4manQ7xz",
1098
+ "connectedAtMs": 1759240800000
1099
+ }
1100
+ },
1101
+ {
1102
+ "action": "upsert",
1103
+ "packageId": "linkedin",
1104
+ "namespace": "connections",
1105
+ "rowId": "pR4manQ7xz|mOk4f0rPx1",
1106
+ "value": {
1107
+ "personId": "pR4manQ7xz",
1108
+ "connectedPersonId": "mOk4f0rPx1",
1109
+ "connectedAtMs": 1759240800000
1110
+ }
1111
+ },
1112
+ {
1113
+ "action": "upsert",
1114
+ "packageId": "linkedin",
1115
+ "namespace": "connections",
1116
+ "rowId": "mOk4f0rPx1|lC4rv4lho0",
1117
+ "value": {
1118
+ "personId": "mOk4f0rPx1",
1119
+ "connectedPersonId": "lC4rv4lho0",
1120
+ "connectedAtMs": 1763560800000
1121
+ }
1122
+ },
1123
+ {
1124
+ "action": "upsert",
1125
+ "packageId": "linkedin",
1126
+ "namespace": "connections",
1127
+ "rowId": "lC4rv4lho0|mOk4f0rPx1",
1128
+ "value": {
1129
+ "personId": "lC4rv4lho0",
1130
+ "connectedPersonId": "mOk4f0rPx1",
1131
+ "connectedAtMs": 1763560800000
1132
+ }
1133
+ },
1134
+ {
1135
+ "action": "upsert",
1136
+ "packageId": "linkedin",
1137
+ "namespace": "connections",
1138
+ "rowId": "mOk4f0rPx1|zLuk4s1ew1",
1139
+ "value": {
1140
+ "personId": "mOk4f0rPx1",
1141
+ "connectedPersonId": "zLuk4s1ew1",
1142
+ "connectedAtMs": 1779112800000
1143
+ }
1144
+ },
1145
+ {
1146
+ "action": "upsert",
1147
+ "packageId": "linkedin",
1148
+ "namespace": "connections",
1149
+ "rowId": "zLuk4s1ew1|mOk4f0rPx1",
1150
+ "value": {
1151
+ "personId": "zLuk4s1ew1",
1152
+ "connectedPersonId": "mOk4f0rPx1",
1153
+ "connectedAtMs": 1779112800000
1154
+ }
1155
+ },
1156
+ {
1157
+ "action": "upsert",
1158
+ "packageId": "linkedin",
1159
+ "namespace": "connections",
1160
+ "rowId": "mOk4f0rPx1|dMens4hK2p",
1161
+ "value": {
1162
+ "personId": "mOk4f0rPx1",
1163
+ "connectedPersonId": "dMens4hK2p",
1164
+ "connectedAtMs": 1784296800000
1165
+ }
1166
+ },
1167
+ {
1168
+ "action": "upsert",
1169
+ "packageId": "linkedin",
1170
+ "namespace": "connections",
1171
+ "rowId": "dMens4hK2p|mOk4f0rPx1",
1172
+ "value": {
1173
+ "personId": "dMens4hK2p",
1174
+ "connectedPersonId": "mOk4f0rPx1",
1175
+ "connectedAtMs": 1784296800000
1176
+ }
1177
+ },
1178
+ {
1179
+ "action": "upsert",
1180
+ "packageId": "linkedin",
1181
+ "namespace": "connections",
1182
+ "rowId": "mOk4f0rPx1|aT4nak4Rr8",
1183
+ "value": {
1184
+ "personId": "mOk4f0rPx1",
1185
+ "connectedPersonId": "aT4nak4Rr8",
1186
+ "connectedAtMs": 1784296800000
1187
+ }
1188
+ },
1189
+ {
1190
+ "action": "upsert",
1191
+ "packageId": "linkedin",
1192
+ "namespace": "connections",
1193
+ "rowId": "aT4nak4Rr8|mOk4f0rPx1",
1194
+ "value": {
1195
+ "personId": "aT4nak4Rr8",
1196
+ "connectedPersonId": "mOk4f0rPx1",
1197
+ "connectedAtMs": 1784296800000
1198
+ }
1199
+ },
1200
+ {
1201
+ "action": "upsert",
1202
+ "packageId": "linkedin",
1203
+ "namespace": "connections",
1204
+ "rowId": "mOk4f0rPx1|gOduy4Lm3n",
1205
+ "value": {
1206
+ "personId": "mOk4f0rPx1",
1207
+ "connectedPersonId": "gOduy4Lm3n",
1208
+ "connectedAtMs": 1786888800000
1209
+ }
1210
+ },
1211
+ {
1212
+ "action": "upsert",
1213
+ "packageId": "linkedin",
1214
+ "namespace": "connections",
1215
+ "rowId": "gOduy4Lm3n|mOk4f0rPx1",
1216
+ "value": {
1217
+ "personId": "gOduy4Lm3n",
1218
+ "connectedPersonId": "mOk4f0rPx1",
1219
+ "connectedAtMs": 1786888800000
1220
+ }
1221
+ },
1222
+ {
1223
+ "action": "upsert",
1224
+ "packageId": "linkedin",
1225
+ "namespace": "connections",
1226
+ "rowId": "jR3yesVv0q|ePetr0v4Qs",
1227
+ "value": {
1228
+ "personId": "jR3yesVv0q",
1229
+ "connectedPersonId": "ePetr0v4Qs",
1230
+ "connectedAtMs": 1772200800000
1231
+ }
1232
+ },
1233
+ {
1234
+ "action": "upsert",
1235
+ "packageId": "linkedin",
1236
+ "namespace": "connections",
1237
+ "rowId": "ePetr0v4Qs|jR3yesVv0q",
1238
+ "value": {
1239
+ "personId": "ePetr0v4Qs",
1240
+ "connectedPersonId": "jR3yesVv0q",
1241
+ "connectedAtMs": 1772200800000
1242
+ }
1243
+ },
1244
+ {
1245
+ "action": "upsert",
1246
+ "packageId": "linkedin",
1247
+ "namespace": "connections",
1248
+ "rowId": "sWh1tf1eld|nH4dd4dPq2",
1249
+ "value": {
1250
+ "personId": "sWh1tf1eld",
1251
+ "connectedPersonId": "nH4dd4dPq2",
1252
+ "connectedAtMs": 1776520800000
1253
+ }
1254
+ },
1255
+ {
1256
+ "action": "upsert",
1257
+ "packageId": "linkedin",
1258
+ "namespace": "connections",
1259
+ "rowId": "nH4dd4dPq2|sWh1tf1eld",
1260
+ "value": {
1261
+ "personId": "nH4dd4dPq2",
1262
+ "connectedPersonId": "sWh1tf1eld",
1263
+ "connectedAtMs": 1776520800000
1264
+ }
1265
+ },
1266
+ {
1267
+ "action": "upsert",
1268
+ "packageId": "linkedin",
1269
+ "namespace": "organizations",
1270
+ "rowId": "81234567",
1271
+ "value": {
1272
+ "id": 81234567,
1273
+ "name": "Northwind Analytics",
1274
+ "vanityName": "northwind-analytics",
1275
+ "description": "Northwind Analytics builds data platforms that help mid-size retailers forecast demand. (Fictional company.)",
1276
+ "website": "https://northwind-analytics.example.com",
1277
+ "industries": [
1278
+ "urn:li:industry:4"
1279
+ ],
1280
+ "staffCountRange": "SIZE_51_TO_200",
1281
+ "organizationType": "PRIVATELY_HELD",
1282
+ "primaryOrganizationType": "NONE",
1283
+ "locations": [
1284
+ {
1285
+ "city": "Oakland",
1286
+ "country": "US",
1287
+ "geographicArea": "California",
1288
+ "postalCode": "94607"
1289
+ }
1290
+ ],
1291
+ "foundedOn": {
1292
+ "year": 2016
1293
+ },
1294
+ "followerCount": 4821,
1295
+ "localeCountry": "US",
1296
+ "localeLanguage": "en",
1297
+ "createdAtMs": 1530280800000
1298
+ }
1299
+ },
1300
+ {
1301
+ "action": "upsert",
1302
+ "packageId": "linkedin",
1303
+ "namespace": "organizations",
1304
+ "rowId": "81234568",
1305
+ "value": {
1306
+ "id": 81234568,
1307
+ "name": "Brightline Robotics",
1308
+ "vanityName": "brightline-robotics",
1309
+ "description": null,
1310
+ "website": "https://brightline-robotics.example.com",
1311
+ "industries": [
1312
+ "urn:li:industry:135"
1313
+ ],
1314
+ "staffCountRange": "SIZE_201_TO_500",
1315
+ "organizationType": "PUBLIC_COMPANY",
1316
+ "primaryOrganizationType": "NONE",
1317
+ "locations": [
1318
+ {
1319
+ "city": "Pittsburgh",
1320
+ "country": "US",
1321
+ "geographicArea": "Pennsylvania",
1322
+ "postalCode": "15222"
1323
+ }
1324
+ ],
1325
+ "foundedOn": {
1326
+ "year": 2011
1327
+ },
1328
+ "followerCount": 12950,
1329
+ "localeCountry": "US",
1330
+ "localeLanguage": "en",
1331
+ "createdAtMs": 1487080800000
1332
+ }
1333
+ },
1334
+ {
1335
+ "action": "upsert",
1336
+ "packageId": "linkedin",
1337
+ "namespace": "organizations",
1338
+ "rowId": "81234569",
1339
+ "value": {
1340
+ "id": 81234569,
1341
+ "name": "Lakeview Institute of Technology",
1342
+ "vanityName": "lakeview-tech",
1343
+ "description": "A fictional technical university on the lake shore.",
1344
+ "website": "https://lakeview-tech.example.edu",
1345
+ "industries": [
1346
+ "urn:li:industry:68"
1347
+ ],
1348
+ "staffCountRange": "SIZE_1001_TO_5000",
1349
+ "organizationType": "EDUCATIONAL",
1350
+ "primaryOrganizationType": "SCHOOL",
1351
+ "locations": [
1352
+ {
1353
+ "city": "Lakeview",
1354
+ "country": "US",
1355
+ "geographicArea": "Illinois",
1356
+ "postalCode": null
1357
+ },
1358
+ {
1359
+ "city": "Toronto",
1360
+ "country": "CA",
1361
+ "geographicArea": "Ontario",
1362
+ "postalCode": null
1363
+ }
1364
+ ],
1365
+ "foundedOn": {
1366
+ "year": 1921
1367
+ },
1368
+ "followerCount": 30412,
1369
+ "localeCountry": "US",
1370
+ "localeLanguage": "en",
1371
+ "createdAtMs": 1443880800000
1372
+ }
1373
+ },
1374
+ {
1375
+ "action": "upsert",
1376
+ "packageId": "linkedin",
1377
+ "namespace": "org-vanity",
1378
+ "rowId": "northwind-analytics",
1379
+ "value": {
1380
+ "organizationId": 81234567
1381
+ }
1382
+ },
1383
+ {
1384
+ "action": "upsert",
1385
+ "packageId": "linkedin",
1386
+ "namespace": "org-vanity",
1387
+ "rowId": "brightline-robotics",
1388
+ "value": {
1389
+ "organizationId": 81234568
1390
+ }
1391
+ },
1392
+ {
1393
+ "action": "upsert",
1394
+ "packageId": "linkedin",
1395
+ "namespace": "org-vanity",
1396
+ "rowId": "lakeview-tech",
1397
+ "value": {
1398
+ "organizationId": 81234569
1399
+ }
1400
+ },
1401
+ {
1402
+ "action": "upsert",
1403
+ "packageId": "linkedin",
1404
+ "namespace": "organization-acls",
1405
+ "rowId": "81234567|mOk4f0rPx1|ADMINISTRATOR",
1406
+ "value": {
1407
+ "organizationId": 81234567,
1408
+ "personId": "mOk4f0rPx1",
1409
+ "role": "ADMINISTRATOR",
1410
+ "state": "APPROVED",
1411
+ "createdAtMs": 1729000800000,
1412
+ "lastModifiedAtMs": 1729000800000
1413
+ }
1414
+ },
1415
+ {
1416
+ "action": "upsert",
1417
+ "packageId": "linkedin",
1418
+ "namespace": "organization-acls",
1419
+ "rowId": "81234567|pR4manQ7xz|CONTENT_ADMINISTRATOR",
1420
+ "value": {
1421
+ "organizationId": 81234567,
1422
+ "personId": "pR4manQ7xz",
1423
+ "role": "CONTENT_ADMINISTRATOR",
1424
+ "state": "APPROVED",
1425
+ "createdAtMs": 1746280800000,
1426
+ "lastModifiedAtMs": 1746280800000
1427
+ }
1428
+ },
1429
+ {
1430
+ "action": "upsert",
1431
+ "packageId": "linkedin",
1432
+ "namespace": "organization-acls",
1433
+ "rowId": "81234567|lC4rv4lho0|ADMINISTRATOR",
1434
+ "value": {
1435
+ "organizationId": 81234567,
1436
+ "personId": "lC4rv4lho0",
1437
+ "role": "ADMINISTRATOR",
1438
+ "state": "REVOKED",
1439
+ "createdAtMs": 1737640800000,
1440
+ "lastModifiedAtMs": 1737640800000
1441
+ }
1442
+ },
1443
+ {
1444
+ "action": "upsert",
1445
+ "packageId": "linkedin",
1446
+ "namespace": "organization-acls",
1447
+ "rowId": "81234568|mOk4f0rPx1|DIRECT_SPONSORED_CONTENT_POSTER",
1448
+ "value": {
1449
+ "organizationId": 81234568,
1450
+ "personId": "mOk4f0rPx1",
1451
+ "role": "DIRECT_SPONSORED_CONTENT_POSTER",
1452
+ "state": "REQUESTED",
1453
+ "createdAtMs": 1787752800000,
1454
+ "lastModifiedAtMs": 1787752800000
1455
+ }
1456
+ },
1457
+ {
1458
+ "action": "upsert",
1459
+ "packageId": "linkedin",
1460
+ "namespace": "organization-acls",
1461
+ "rowId": "81234568|sWh1tf1eld|ADMINISTRATOR",
1462
+ "value": {
1463
+ "organizationId": 81234568,
1464
+ "personId": "sWh1tf1eld",
1465
+ "role": "ADMINISTRATOR",
1466
+ "state": "APPROVED",
1467
+ "createdAtMs": 1711720800000,
1468
+ "lastModifiedAtMs": 1711720800000
1469
+ }
1470
+ },
1471
+ {
1472
+ "action": "upsert",
1473
+ "packageId": "linkedin",
1474
+ "namespace": "organization-acls",
1475
+ "rowId": "81234569|mOk4f0rPx1|ANALYST",
1476
+ "value": {
1477
+ "organizationId": 81234569,
1478
+ "personId": "mOk4f0rPx1",
1479
+ "role": "ANALYST",
1480
+ "state": "APPROVED",
1481
+ "createdAtMs": 1781704800000,
1482
+ "lastModifiedAtMs": 1781704800000
1483
+ }
1484
+ },
1485
+ {
1486
+ "action": "upsert",
1487
+ "packageId": "linkedin",
1488
+ "namespace": "posts",
1489
+ "rowId": "7495479617126400001",
1490
+ "value": {
1491
+ "id": "7495479617126400001",
1492
+ "kind": "share",
1493
+ "activityId": "7495479617126400002",
1494
+ "author": "urn:li:person:mOk4f0rPx1",
1495
+ "commentary": "",
1496
+ "visibility": "PUBLIC",
1497
+ "feedDistribution": "MAIN_FEED",
1498
+ "lifecycleState": "PUBLISHED",
1499
+ "isReshareDisabledByAuthor": false,
1500
+ "isEditedByAuthor": false,
1501
+ "article": null,
1502
+ "reshareParent": null,
1503
+ "reshareRoot": null,
1504
+ "commentsState": "OPEN",
1505
+ "createdBy": "mOk4f0rPx1",
1506
+ "createdAtMs": 1787061600000,
1507
+ "lastModifiedAtMs": 1787148000000,
1508
+ "publishedAtMs": 1787061600000,
1509
+ "deletedAtMs": 1787148000000
1510
+ }
1511
+ },
1512
+ {
1513
+ "action": "upsert",
1514
+ "packageId": "linkedin",
1515
+ "namespace": "posts",
1516
+ "rowId": "7496566780723200003",
1517
+ "value": {
1518
+ "id": "7496566780723200003",
1519
+ "kind": "share",
1520
+ "activityId": "7496566780723200004",
1521
+ "author": "urn:li:person:sWh1tf1eld",
1522
+ "commentary": "Our warehouse robots just passed 1 million picks without a safety stop. Proud of this crew.",
1523
+ "visibility": "PUBLIC",
1524
+ "feedDistribution": "MAIN_FEED",
1525
+ "lifecycleState": "PUBLISHED",
1526
+ "isReshareDisabledByAuthor": false,
1527
+ "isEditedByAuthor": false,
1528
+ "article": null,
1529
+ "reshareParent": null,
1530
+ "reshareRoot": null,
1531
+ "commentsState": "OPEN",
1532
+ "createdBy": "sWh1tf1eld",
1533
+ "createdAtMs": 1787320800000,
1534
+ "lastModifiedAtMs": 1787320800000,
1535
+ "publishedAtMs": 1787320800000,
1536
+ "deletedAtMs": null
1537
+ }
1538
+ },
1539
+ {
1540
+ "action": "upsert",
1541
+ "packageId": "linkedin",
1542
+ "namespace": "posts",
1543
+ "rowId": "7498378720051200005",
1544
+ "value": {
1545
+ "id": "7498378720051200005",
1546
+ "kind": "share",
1547
+ "activityId": "7498378720051200006",
1548
+ "author": "urn:li:person:mOk4f0rPx1",
1549
+ "commentary": "This is what careful rollout looks like.",
1550
+ "visibility": "PUBLIC",
1551
+ "feedDistribution": "MAIN_FEED",
1552
+ "lifecycleState": "PUBLISHED",
1553
+ "isReshareDisabledByAuthor": false,
1554
+ "isEditedByAuthor": false,
1555
+ "article": null,
1556
+ "reshareParent": "urn:li:share:7496566780723200003",
1557
+ "reshareRoot": "urn:li:share:7496566780723200003",
1558
+ "commentsState": "OPEN",
1559
+ "createdBy": "mOk4f0rPx1",
1560
+ "createdAtMs": 1787752800000,
1561
+ "lastModifiedAtMs": 1787752800000,
1562
+ "publishedAtMs": 1787752800000,
1563
+ "deletedAtMs": null
1564
+ }
1565
+ },
1566
+ {
1567
+ "action": "upsert",
1568
+ "packageId": "linkedin",
1569
+ "namespace": "posts",
1570
+ "rowId": "7500190659379200007",
1571
+ "value": {
1572
+ "id": "7500190659379200007",
1573
+ "kind": "ugcPost",
1574
+ "activityId": "7500190659379200008",
1575
+ "author": "urn:li:person:mOk4f0rPx1",
1576
+ "commentary": "Posted from our old scheduling tool: Q3 data platform office hours are open to everyone.",
1577
+ "visibility": "PUBLIC",
1578
+ "feedDistribution": "MAIN_FEED",
1579
+ "lifecycleState": "PUBLISHED",
1580
+ "isReshareDisabledByAuthor": false,
1581
+ "isEditedByAuthor": false,
1582
+ "article": null,
1583
+ "reshareParent": null,
1584
+ "reshareRoot": null,
1585
+ "commentsState": "OPEN",
1586
+ "createdBy": "mOk4f0rPx1",
1587
+ "createdAtMs": 1788184800000,
1588
+ "lastModifiedAtMs": 1788184800000,
1589
+ "publishedAtMs": 1788184800000,
1590
+ "deletedAtMs": null
1591
+ }
1592
+ },
1593
+ {
1594
+ "action": "upsert",
1595
+ "packageId": "linkedin",
1596
+ "namespace": "posts",
1597
+ "rowId": "7501277822976000009",
1598
+ "value": {
1599
+ "id": "7501277822976000009",
1600
+ "kind": "share",
1601
+ "activityId": "7501277822976000010",
1602
+ "author": "urn:li:person:mOk4f0rPx1",
1603
+ "commentary": "Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. Data platforms fail quietly: a schema drifts, a job retries forever, a dashboard shows yesterday. ............................................................",
1604
+ "visibility": "PUBLIC",
1605
+ "feedDistribution": "MAIN_FEED",
1606
+ "lifecycleState": "PUBLISHED",
1607
+ "isReshareDisabledByAuthor": false,
1608
+ "isEditedByAuthor": false,
1609
+ "article": null,
1610
+ "reshareParent": null,
1611
+ "reshareRoot": null,
1612
+ "commentsState": "OPEN",
1613
+ "createdBy": "mOk4f0rPx1",
1614
+ "createdAtMs": 1788444000000,
1615
+ "lastModifiedAtMs": 1788444000000,
1616
+ "publishedAtMs": 1788444000000,
1617
+ "deletedAtMs": null
1618
+ }
1619
+ },
1620
+ {
1621
+ "action": "upsert",
1622
+ "packageId": "linkedin",
1623
+ "namespace": "posts",
1624
+ "rowId": "7502002598707200011",
1625
+ "value": {
1626
+ "id": "7502002598707200011",
1627
+ "kind": "share",
1628
+ "activityId": "7502002598707200012",
1629
+ "author": "urn:li:person:mOk4f0rPx1",
1630
+ "commentary": "Announcing the end of our legacy reporting stack. Comments are closed; questions go to the internal channel.",
1631
+ "visibility": "PUBLIC",
1632
+ "feedDistribution": "MAIN_FEED",
1633
+ "lifecycleState": "PUBLISHED",
1634
+ "isReshareDisabledByAuthor": false,
1635
+ "isEditedByAuthor": false,
1636
+ "article": null,
1637
+ "reshareParent": null,
1638
+ "reshareRoot": null,
1639
+ "commentsState": "CLOSED",
1640
+ "createdBy": "mOk4f0rPx1",
1641
+ "createdAtMs": 1788616800000,
1642
+ "lastModifiedAtMs": 1788616800000,
1643
+ "publishedAtMs": 1788616800000,
1644
+ "deletedAtMs": null
1645
+ }
1646
+ },
1647
+ {
1648
+ "action": "upsert",
1649
+ "packageId": "linkedin",
1650
+ "namespace": "posts",
1651
+ "rowId": "7502364986572800013",
1652
+ "value": {
1653
+ "id": "7502364986572800013",
1654
+ "kind": "share",
1655
+ "activityId": "7502364986572800014",
1656
+ "author": "urn:li:organization:81234568",
1657
+ "commentary": "Brightline Robotics opens its new assembly line in Pittsburgh today.",
1658
+ "visibility": "PUBLIC",
1659
+ "feedDistribution": "MAIN_FEED",
1660
+ "lifecycleState": "PUBLISHED",
1661
+ "isReshareDisabledByAuthor": true,
1662
+ "isEditedByAuthor": false,
1663
+ "article": null,
1664
+ "reshareParent": null,
1665
+ "reshareRoot": null,
1666
+ "commentsState": "OPEN",
1667
+ "createdBy": "sWh1tf1eld",
1668
+ "createdAtMs": 1788703200000,
1669
+ "lastModifiedAtMs": 1788703200000,
1670
+ "publishedAtMs": 1788703200000,
1671
+ "deletedAtMs": null
1672
+ }
1673
+ },
1674
+ {
1675
+ "action": "upsert",
1676
+ "packageId": "linkedin",
1677
+ "namespace": "posts",
1678
+ "rowId": "7502727374438400015",
1679
+ "value": {
1680
+ "id": "7502727374438400015",
1681
+ "kind": "share",
1682
+ "activityId": "7502727374438400016",
1683
+ "author": "urn:li:person:mOk4f0rPx1",
1684
+ "commentary": "Updated: our data contracts template now covers late-arriving events.",
1685
+ "visibility": "PUBLIC",
1686
+ "feedDistribution": "MAIN_FEED",
1687
+ "lifecycleState": "PUBLISHED",
1688
+ "isReshareDisabledByAuthor": false,
1689
+ "isEditedByAuthor": true,
1690
+ "article": null,
1691
+ "reshareParent": null,
1692
+ "reshareRoot": null,
1693
+ "commentsState": "OPEN",
1694
+ "createdBy": "mOk4f0rPx1",
1695
+ "createdAtMs": 1788789600000,
1696
+ "lastModifiedAtMs": 1789437600000,
1697
+ "publishedAtMs": 1788789600000,
1698
+ "deletedAtMs": null
1699
+ }
1700
+ },
1701
+ {
1702
+ "action": "upsert",
1703
+ "packageId": "linkedin",
1704
+ "namespace": "posts",
1705
+ "rowId": "7503089762304000017",
1706
+ "value": {
1707
+ "id": "7503089762304000017",
1708
+ "kind": "share",
1709
+ "activityId": "7503089762304000018",
1710
+ "author": "urn:li:organization:81234567",
1711
+ "commentary": "Our annual retail forecasting report is out.",
1712
+ "visibility": "PUBLIC",
1713
+ "feedDistribution": "MAIN_FEED",
1714
+ "lifecycleState": "PUBLISHED",
1715
+ "isReshareDisabledByAuthor": false,
1716
+ "isEditedByAuthor": false,
1717
+ "article": {
1718
+ "source": "https://northwind-analytics.example.com/reports/forecasting-2026",
1719
+ "title": "Retail Forecasting Report 2026",
1720
+ "description": null
1721
+ },
1722
+ "reshareParent": null,
1723
+ "reshareRoot": null,
1724
+ "commentsState": "OPEN",
1725
+ "createdBy": "pR4manQ7xz",
1726
+ "createdAtMs": 1788876000000,
1727
+ "lastModifiedAtMs": 1788876000000,
1728
+ "publishedAtMs": 1788876000000,
1729
+ "deletedAtMs": null
1730
+ }
1731
+ },
1732
+ {
1733
+ "action": "upsert",
1734
+ "packageId": "linkedin",
1735
+ "namespace": "posts",
1736
+ "rowId": "7503452150169600019",
1737
+ "value": {
1738
+ "id": "7503452150169600019",
1739
+ "kind": "share",
1740
+ "activityId": "7503452150169600020",
1741
+ "author": "urn:li:person:mOk4f0rPx1",
1742
+ "commentary": "Members-only notes from the Data Platform Summit.",
1743
+ "visibility": "LOGGED_IN",
1744
+ "feedDistribution": "MAIN_FEED",
1745
+ "lifecycleState": "PUBLISHED",
1746
+ "isReshareDisabledByAuthor": false,
1747
+ "isEditedByAuthor": false,
1748
+ "article": null,
1749
+ "reshareParent": null,
1750
+ "reshareRoot": null,
1751
+ "commentsState": "OPEN",
1752
+ "createdBy": "mOk4f0rPx1",
1753
+ "createdAtMs": 1788962400000,
1754
+ "lastModifiedAtMs": 1788962400000,
1755
+ "publishedAtMs": 1788962400000,
1756
+ "deletedAtMs": null
1757
+ }
1758
+ },
1759
+ {
1760
+ "action": "upsert",
1761
+ "packageId": "linkedin",
1762
+ "namespace": "posts",
1763
+ "rowId": "7503814538035200021",
1764
+ "value": {
1765
+ "id": "7503814538035200021",
1766
+ "kind": "share",
1767
+ "activityId": "7503814538035200022",
1768
+ "author": "urn:li:person:mOk4f0rPx1",
1769
+ "commentary": "Personal update for my network: I am mentoring two new data engineers this quarter.",
1770
+ "visibility": "CONNECTIONS",
1771
+ "feedDistribution": "MAIN_FEED",
1772
+ "lifecycleState": "PUBLISHED",
1773
+ "isReshareDisabledByAuthor": false,
1774
+ "isEditedByAuthor": false,
1775
+ "article": null,
1776
+ "reshareParent": null,
1777
+ "reshareRoot": null,
1778
+ "commentsState": "OPEN",
1779
+ "createdBy": "mOk4f0rPx1",
1780
+ "createdAtMs": 1789048800000,
1781
+ "lastModifiedAtMs": 1789048800000,
1782
+ "publishedAtMs": 1789048800000,
1783
+ "deletedAtMs": null
1784
+ }
1785
+ },
1786
+ {
1787
+ "action": "upsert",
1788
+ "packageId": "linkedin",
1789
+ "namespace": "posts",
1790
+ "rowId": "7504176925900800023",
1791
+ "value": {
1792
+ "id": "7504176925900800023",
1793
+ "kind": "share",
1794
+ "activityId": "7504176925900800024",
1795
+ "author": "urn:li:person:mOk4f0rPx1",
1796
+ "commentary": "Proud of the team at @[Northwind Analytics](urn:li:organization:81234567) for shipping lineage for every dashboard.",
1797
+ "visibility": "PUBLIC",
1798
+ "feedDistribution": "MAIN_FEED",
1799
+ "lifecycleState": "PUBLISHED",
1800
+ "isReshareDisabledByAuthor": false,
1801
+ "isEditedByAuthor": false,
1802
+ "article": null,
1803
+ "reshareParent": null,
1804
+ "reshareRoot": null,
1805
+ "commentsState": "OPEN",
1806
+ "createdBy": "mOk4f0rPx1",
1807
+ "createdAtMs": 1789135200000,
1808
+ "lastModifiedAtMs": 1789135200000,
1809
+ "publishedAtMs": 1789135200000,
1810
+ "deletedAtMs": null
1811
+ }
1812
+ },
1813
+ {
1814
+ "action": "upsert",
1815
+ "packageId": "linkedin",
1816
+ "namespace": "posts",
1817
+ "rowId": "7504176925900800025",
1818
+ "value": {
1819
+ "id": "7504176925900800025",
1820
+ "kind": "share",
1821
+ "activityId": "7504176925900800026",
1822
+ "author": "urn:li:person:jR3yesVv0q",
1823
+ "commentary": "Only for my connections: we are hiring a field producer.",
1824
+ "visibility": "CONNECTIONS",
1825
+ "feedDistribution": "MAIN_FEED",
1826
+ "lifecycleState": "PUBLISHED",
1827
+ "isReshareDisabledByAuthor": false,
1828
+ "isEditedByAuthor": false,
1829
+ "article": null,
1830
+ "reshareParent": null,
1831
+ "reshareRoot": null,
1832
+ "commentsState": "OPEN",
1833
+ "createdBy": "jR3yesVv0q",
1834
+ "createdAtMs": 1789135200000,
1835
+ "lastModifiedAtMs": 1789135200000,
1836
+ "publishedAtMs": 1789135200000,
1837
+ "deletedAtMs": null
1838
+ }
1839
+ },
1840
+ {
1841
+ "action": "upsert",
1842
+ "packageId": "linkedin",
1843
+ "namespace": "posts",
1844
+ "rowId": "7504539313766400027",
1845
+ "value": {
1846
+ "id": "7504539313766400027",
1847
+ "kind": "share",
1848
+ "activityId": "7504539313766400028",
1849
+ "author": "urn:li:person:mOk4f0rPx1",
1850
+ "commentary": "Lessons from migrating 40 pipelines in one quarter {hashtag|\\#|dataengineering} {hashtag|\\#|platform}",
1851
+ "visibility": "PUBLIC",
1852
+ "feedDistribution": "MAIN_FEED",
1853
+ "lifecycleState": "PUBLISHED",
1854
+ "isReshareDisabledByAuthor": false,
1855
+ "isEditedByAuthor": false,
1856
+ "article": null,
1857
+ "reshareParent": null,
1858
+ "reshareRoot": null,
1859
+ "commentsState": "OPEN",
1860
+ "createdBy": "mOk4f0rPx1",
1861
+ "createdAtMs": 1789221600000,
1862
+ "lastModifiedAtMs": 1789221600000,
1863
+ "publishedAtMs": 1789221600000,
1864
+ "deletedAtMs": null
1865
+ }
1866
+ },
1867
+ {
1868
+ "action": "upsert",
1869
+ "packageId": "linkedin",
1870
+ "namespace": "posts",
1871
+ "rowId": "7504720507699200029",
1872
+ "value": {
1873
+ "id": "7504720507699200029",
1874
+ "kind": "share",
1875
+ "activityId": "7504720507699200030",
1876
+ "author": "urn:li:person:zLuk4s1ew1",
1877
+ "commentary": "Dziękuję wszystkim za wsparcie 🎉",
1878
+ "visibility": "PUBLIC",
1879
+ "feedDistribution": "MAIN_FEED",
1880
+ "lifecycleState": "PUBLISHED",
1881
+ "isReshareDisabledByAuthor": false,
1882
+ "isEditedByAuthor": false,
1883
+ "article": null,
1884
+ "reshareParent": null,
1885
+ "reshareRoot": null,
1886
+ "commentsState": "OPEN",
1887
+ "createdBy": "zLuk4s1ew1",
1888
+ "createdAtMs": 1789264800000,
1889
+ "lastModifiedAtMs": 1789264800000,
1890
+ "publishedAtMs": 1789264800000,
1891
+ "deletedAtMs": null
1892
+ }
1893
+ },
1894
+ {
1895
+ "action": "upsert",
1896
+ "packageId": "linkedin",
1897
+ "namespace": "posts",
1898
+ "rowId": "7504901701632000031",
1899
+ "value": {
1900
+ "id": "7504901701632000031",
1901
+ "kind": "share",
1902
+ "activityId": "7504901701632000032",
1903
+ "author": "urn:li:person:mOk4f0rPx1",
1904
+ "commentary": "How we cut pipeline incidents in half.",
1905
+ "visibility": "PUBLIC",
1906
+ "feedDistribution": "MAIN_FEED",
1907
+ "lifecycleState": "PUBLISHED",
1908
+ "isReshareDisabledByAuthor": false,
1909
+ "isEditedByAuthor": false,
1910
+ "article": {
1911
+ "source": "https://blog.northwind-analytics.example.com/pipeline-incidents",
1912
+ "title": "Halving pipeline incidents",
1913
+ "description": "A long look at the alerting, ownership and data contract changes that halved incidents across 40 pipelines, including the parts that did not work and what we would do differently next time."
1914
+ },
1915
+ "reshareParent": null,
1916
+ "reshareRoot": null,
1917
+ "commentsState": "OPEN",
1918
+ "createdBy": "mOk4f0rPx1",
1919
+ "createdAtMs": 1789308000000,
1920
+ "lastModifiedAtMs": 1789308000000,
1921
+ "publishedAtMs": 1789308000000,
1922
+ "deletedAtMs": null
1923
+ }
1924
+ },
1925
+ {
1926
+ "action": "upsert",
1927
+ "packageId": "linkedin",
1928
+ "namespace": "posts",
1929
+ "rowId": "7505082895564800033",
1930
+ "value": {
1931
+ "id": "7505082895564800033",
1932
+ "kind": "share",
1933
+ "activityId": "7505082895564800034",
1934
+ "author": "urn:li:organization:81234567",
1935
+ "commentary": "Meet the analysts behind this year's forecasting report.",
1936
+ "visibility": "PUBLIC",
1937
+ "feedDistribution": "MAIN_FEED",
1938
+ "lifecycleState": "PUBLISHED",
1939
+ "isReshareDisabledByAuthor": false,
1940
+ "isEditedByAuthor": false,
1941
+ "article": null,
1942
+ "reshareParent": null,
1943
+ "reshareRoot": null,
1944
+ "commentsState": "OPEN",
1945
+ "createdBy": "pR4manQ7xz",
1946
+ "createdAtMs": 1789351200000,
1947
+ "lastModifiedAtMs": 1789351200000,
1948
+ "publishedAtMs": 1789351200000,
1949
+ "deletedAtMs": null
1950
+ }
1951
+ },
1952
+ {
1953
+ "action": "upsert",
1954
+ "packageId": "linkedin",
1955
+ "namespace": "posts",
1956
+ "rowId": "7505264089497600035",
1957
+ "value": {
1958
+ "id": "7505264089497600035",
1959
+ "kind": "share",
1960
+ "activityId": "7505264089497600036",
1961
+ "author": "urn:li:person:mOk4f0rPx1",
1962
+ "commentary": "Shipping our new lineage graph today. Thanks to everyone who tested it.",
1963
+ "visibility": "PUBLIC",
1964
+ "feedDistribution": "MAIN_FEED",
1965
+ "lifecycleState": "PUBLISHED",
1966
+ "isReshareDisabledByAuthor": false,
1967
+ "isEditedByAuthor": false,
1968
+ "article": null,
1969
+ "reshareParent": null,
1970
+ "reshareRoot": null,
1971
+ "commentsState": "OPEN",
1972
+ "createdBy": "mOk4f0rPx1",
1973
+ "createdAtMs": 1789394400000,
1974
+ "lastModifiedAtMs": 1789394400000,
1975
+ "publishedAtMs": 1789394400000,
1976
+ "deletedAtMs": null
1977
+ }
1978
+ },
1979
+ {
1980
+ "action": "upsert",
1981
+ "packageId": "linkedin",
1982
+ "namespace": "posts",
1983
+ "rowId": "7505581178880000037",
1984
+ "value": {
1985
+ "id": "7505581178880000037",
1986
+ "kind": "share",
1987
+ "activityId": "7505581178880000038",
1988
+ "author": "urn:li:person:mOk4f0rPx1",
1989
+ "commentary": "Draft: thoughts on on-call rotations for data teams.",
1990
+ "visibility": "PUBLIC",
1991
+ "feedDistribution": "MAIN_FEED",
1992
+ "lifecycleState": "DRAFT",
1993
+ "isReshareDisabledByAuthor": false,
1994
+ "isEditedByAuthor": false,
1995
+ "article": null,
1996
+ "reshareParent": null,
1997
+ "reshareRoot": null,
1998
+ "commentsState": "OPEN",
1999
+ "createdBy": "mOk4f0rPx1",
2000
+ "createdAtMs": 1789470000000,
2001
+ "lastModifiedAtMs": 1789470000000,
2002
+ "publishedAtMs": null,
2003
+ "deletedAtMs": null
2004
+ }
2005
+ },
2006
+ {
2007
+ "action": "upsert",
2008
+ "packageId": "linkedin",
2009
+ "namespace": "activities",
2010
+ "rowId": "7495479617126400002",
2011
+ "value": {
2012
+ "postId": "7495479617126400001"
2013
+ }
2014
+ },
2015
+ {
2016
+ "action": "upsert",
2017
+ "packageId": "linkedin",
2018
+ "namespace": "activities",
2019
+ "rowId": "7496566780723200004",
2020
+ "value": {
2021
+ "postId": "7496566780723200003"
2022
+ }
2023
+ },
2024
+ {
2025
+ "action": "upsert",
2026
+ "packageId": "linkedin",
2027
+ "namespace": "activities",
2028
+ "rowId": "7498378720051200006",
2029
+ "value": {
2030
+ "postId": "7498378720051200005"
2031
+ }
2032
+ },
2033
+ {
2034
+ "action": "upsert",
2035
+ "packageId": "linkedin",
2036
+ "namespace": "activities",
2037
+ "rowId": "7500190659379200008",
2038
+ "value": {
2039
+ "postId": "7500190659379200007"
2040
+ }
2041
+ },
2042
+ {
2043
+ "action": "upsert",
2044
+ "packageId": "linkedin",
2045
+ "namespace": "activities",
2046
+ "rowId": "7501277822976000010",
2047
+ "value": {
2048
+ "postId": "7501277822976000009"
2049
+ }
2050
+ },
2051
+ {
2052
+ "action": "upsert",
2053
+ "packageId": "linkedin",
2054
+ "namespace": "activities",
2055
+ "rowId": "7502002598707200012",
2056
+ "value": {
2057
+ "postId": "7502002598707200011"
2058
+ }
2059
+ },
2060
+ {
2061
+ "action": "upsert",
2062
+ "packageId": "linkedin",
2063
+ "namespace": "activities",
2064
+ "rowId": "7502364986572800014",
2065
+ "value": {
2066
+ "postId": "7502364986572800013"
2067
+ }
2068
+ },
2069
+ {
2070
+ "action": "upsert",
2071
+ "packageId": "linkedin",
2072
+ "namespace": "activities",
2073
+ "rowId": "7502727374438400016",
2074
+ "value": {
2075
+ "postId": "7502727374438400015"
2076
+ }
2077
+ },
2078
+ {
2079
+ "action": "upsert",
2080
+ "packageId": "linkedin",
2081
+ "namespace": "activities",
2082
+ "rowId": "7503089762304000018",
2083
+ "value": {
2084
+ "postId": "7503089762304000017"
2085
+ }
2086
+ },
2087
+ {
2088
+ "action": "upsert",
2089
+ "packageId": "linkedin",
2090
+ "namespace": "activities",
2091
+ "rowId": "7503452150169600020",
2092
+ "value": {
2093
+ "postId": "7503452150169600019"
2094
+ }
2095
+ },
2096
+ {
2097
+ "action": "upsert",
2098
+ "packageId": "linkedin",
2099
+ "namespace": "activities",
2100
+ "rowId": "7503814538035200022",
2101
+ "value": {
2102
+ "postId": "7503814538035200021"
2103
+ }
2104
+ },
2105
+ {
2106
+ "action": "upsert",
2107
+ "packageId": "linkedin",
2108
+ "namespace": "activities",
2109
+ "rowId": "7504176925900800024",
2110
+ "value": {
2111
+ "postId": "7504176925900800023"
2112
+ }
2113
+ },
2114
+ {
2115
+ "action": "upsert",
2116
+ "packageId": "linkedin",
2117
+ "namespace": "activities",
2118
+ "rowId": "7504176925900800026",
2119
+ "value": {
2120
+ "postId": "7504176925900800025"
2121
+ }
2122
+ },
2123
+ {
2124
+ "action": "upsert",
2125
+ "packageId": "linkedin",
2126
+ "namespace": "activities",
2127
+ "rowId": "7504539313766400028",
2128
+ "value": {
2129
+ "postId": "7504539313766400027"
2130
+ }
2131
+ },
2132
+ {
2133
+ "action": "upsert",
2134
+ "packageId": "linkedin",
2135
+ "namespace": "activities",
2136
+ "rowId": "7504720507699200030",
2137
+ "value": {
2138
+ "postId": "7504720507699200029"
2139
+ }
2140
+ },
2141
+ {
2142
+ "action": "upsert",
2143
+ "packageId": "linkedin",
2144
+ "namespace": "activities",
2145
+ "rowId": "7504901701632000032",
2146
+ "value": {
2147
+ "postId": "7504901701632000031"
2148
+ }
2149
+ },
2150
+ {
2151
+ "action": "upsert",
2152
+ "packageId": "linkedin",
2153
+ "namespace": "activities",
2154
+ "rowId": "7505082895564800034",
2155
+ "value": {
2156
+ "postId": "7505082895564800033"
2157
+ }
2158
+ },
2159
+ {
2160
+ "action": "upsert",
2161
+ "packageId": "linkedin",
2162
+ "namespace": "activities",
2163
+ "rowId": "7505264089497600036",
2164
+ "value": {
2165
+ "postId": "7505264089497600035"
2166
+ }
2167
+ },
2168
+ {
2169
+ "action": "upsert",
2170
+ "packageId": "linkedin",
2171
+ "namespace": "activities",
2172
+ "rowId": "7505581178880000038",
2173
+ "value": {
2174
+ "postId": "7505581178880000037"
2175
+ }
2176
+ },
2177
+ {
2178
+ "action": "upsert",
2179
+ "packageId": "linkedin",
2180
+ "namespace": "comments",
2181
+ "rowId": "7504901701632000032|7504937940418560039",
2182
+ "value": {
2183
+ "id": "7504937940418560039",
2184
+ "activityId": "7504901701632000032",
2185
+ "actor": "urn:li:person:sWh1tf1eld",
2186
+ "agent": null,
2187
+ "text": "The ownership section is exactly what we needed.",
2188
+ "attributes": [],
2189
+ "parentCommentId": null,
2190
+ "createdAtMs": 1789316640000,
2191
+ "lastModifiedAtMs": 1789316640000
2192
+ }
2193
+ },
2194
+ {
2195
+ "action": "upsert",
2196
+ "packageId": "linkedin",
2197
+ "namespace": "comments",
2198
+ "rowId": "7504901701632000032|7504974179205120040",
2199
+ "value": {
2200
+ "id": "7504974179205120040",
2201
+ "activityId": "7504901701632000032",
2202
+ "actor": "urn:li:person:pR4manQ7xz",
2203
+ "agent": null,
2204
+ "text": "Can we turn this into a webinar?",
2205
+ "attributes": [],
2206
+ "parentCommentId": null,
2207
+ "createdAtMs": 1789325280000,
2208
+ "lastModifiedAtMs": 1789325280000
2209
+ }
2210
+ },
2211
+ {
2212
+ "action": "upsert",
2213
+ "packageId": "linkedin",
2214
+ "namespace": "comments",
2215
+ "rowId": "7504901701632000032|7505010417991680041",
2216
+ "value": {
2217
+ "id": "7505010417991680041",
2218
+ "activityId": "7504901701632000032",
2219
+ "actor": "urn:li:person:mOk4f0rPx1",
2220
+ "agent": null,
2221
+ "text": "Thanks Sam, happy to compare notes.",
2222
+ "attributes": [],
2223
+ "parentCommentId": "7504937940418560039",
2224
+ "createdAtMs": 1789333920000,
2225
+ "lastModifiedAtMs": 1789333920000
2226
+ }
2227
+ },
2228
+ {
2229
+ "action": "upsert",
2230
+ "packageId": "linkedin",
2231
+ "namespace": "comments",
2232
+ "rowId": "7504901701632000032|7505046656778240042",
2233
+ "value": {
2234
+ "id": "7505046656778240042",
2235
+ "activityId": "7504901701632000032",
2236
+ "actor": "urn:li:organization:81234567",
2237
+ "agent": "mOk4f0rPx1",
2238
+ "text": "Yes! Registration opens next week.",
2239
+ "attributes": [],
2240
+ "parentCommentId": "7504974179205120040",
2241
+ "createdAtMs": 1789342560000,
2242
+ "lastModifiedAtMs": 1789342560000
2243
+ }
2244
+ },
2245
+ {
2246
+ "action": "upsert",
2247
+ "packageId": "linkedin",
2248
+ "namespace": "comments",
2249
+ "rowId": "7504901701632000032|7505082895564800043",
2250
+ "value": {
2251
+ "id": "7505082895564800043",
2252
+ "activityId": "7504901701632000032",
2253
+ "actor": "urn:li:person:zLuk4s1ew1",
2254
+ "agent": null,
2255
+ "text": "Great write-up, Maya Okafor! Sharing with my team.",
2256
+ "attributes": [
2257
+ {
2258
+ "start": 16,
2259
+ "length": 11,
2260
+ "person": "mOk4f0rPx1",
2261
+ "organization": null
2262
+ }
2263
+ ],
2264
+ "parentCommentId": null,
2265
+ "createdAtMs": 1789351200000,
2266
+ "lastModifiedAtMs": 1789351200000
2267
+ }
2268
+ },
2269
+ {
2270
+ "action": "upsert",
2271
+ "packageId": "linkedin",
2272
+ "namespace": "comments",
2273
+ "rowId": "7503089762304000018|7503270956236800044",
2274
+ "value": {
2275
+ "id": "7503270956236800044",
2276
+ "activityId": "7503089762304000018",
2277
+ "actor": "urn:li:person:dMens4hK2p",
2278
+ "agent": null,
2279
+ "text": "The regional breakdown is very useful.",
2280
+ "attributes": [],
2281
+ "parentCommentId": null,
2282
+ "createdAtMs": 1788919200000,
2283
+ "lastModifiedAtMs": 1788919200000
2284
+ }
2285
+ },
2286
+ {
2287
+ "action": "upsert",
2288
+ "packageId": "linkedin",
2289
+ "namespace": "comments",
2290
+ "rowId": "7503089762304000018|7503452150169600045",
2291
+ "value": {
2292
+ "id": "7503452150169600045",
2293
+ "activityId": "7503089762304000018",
2294
+ "actor": "urn:li:person:aT4nak4Rr8",
2295
+ "agent": null,
2296
+ "text": "Would love to see the methodology appendix.",
2297
+ "attributes": [],
2298
+ "parentCommentId": null,
2299
+ "createdAtMs": 1788962400000,
2300
+ "lastModifiedAtMs": 1788962400000
2301
+ }
2302
+ },
2303
+ {
2304
+ "action": "upsert",
2305
+ "packageId": "linkedin",
2306
+ "namespace": "comments",
2307
+ "rowId": "7496566780723200004|7496929168588800046",
2308
+ "value": {
2309
+ "id": "7496929168588800046",
2310
+ "activityId": "7496566780723200004",
2311
+ "actor": "urn:li:person:mOk4f0rPx1",
2312
+ "agent": null,
2313
+ "text": "Congratulations to the whole team!",
2314
+ "attributes": [],
2315
+ "parentCommentId": null,
2316
+ "createdAtMs": 1787407200000,
2317
+ "lastModifiedAtMs": 1787407200000
2318
+ }
2319
+ },
2320
+ {
2321
+ "action": "upsert",
2322
+ "packageId": "linkedin",
2323
+ "namespace": "comments",
2324
+ "rowId": "7496566780723200004|7497110362521600047",
2325
+ "value": {
2326
+ "id": "7497110362521600047",
2327
+ "activityId": "7496566780723200004",
2328
+ "actor": "urn:li:person:nH4dd4dPq2",
2329
+ "agent": null,
2330
+ "text": "It was a long road. Worth it.",
2331
+ "attributes": [],
2332
+ "parentCommentId": null,
2333
+ "createdAtMs": 1787450400000,
2334
+ "lastModifiedAtMs": 1787450400000
2335
+ }
2336
+ },
2337
+ {
2338
+ "action": "upsert",
2339
+ "packageId": "linkedin",
2340
+ "namespace": "comments",
2341
+ "rowId": "7502364986572800014|7502546180505600048",
2342
+ "value": {
2343
+ "id": "7502546180505600048",
2344
+ "activityId": "7502364986572800014",
2345
+ "actor": "urn:li:person:gOduy4Lm3n",
2346
+ "agent": null,
2347
+ "text": "Beautiful facility.",
2348
+ "attributes": [],
2349
+ "parentCommentId": null,
2350
+ "createdAtMs": 1788746400000,
2351
+ "lastModifiedAtMs": 1788746400000
2352
+ }
2353
+ },
2354
+ {
2355
+ "action": "upsert",
2356
+ "packageId": "linkedin",
2357
+ "namespace": "comments",
2358
+ "rowId": "7504720507699200030|7504756746485760049",
2359
+ "value": {
2360
+ "id": "7504756746485760049",
2361
+ "activityId": "7504720507699200030",
2362
+ "actor": "urn:li:person:mOk4f0rPx1",
2363
+ "agent": null,
2364
+ "text": "Well deserved, Zoë!",
2365
+ "attributes": [],
2366
+ "parentCommentId": null,
2367
+ "createdAtMs": 1789273440000,
2368
+ "lastModifiedAtMs": 1789273440000
2369
+ }
2370
+ },
2371
+ {
2372
+ "action": "upsert",
2373
+ "packageId": "linkedin",
2374
+ "namespace": "comments",
2375
+ "rowId": "7504720507699200030|7504829224058880050",
2376
+ "value": {
2377
+ "id": "7504829224058880050",
2378
+ "activityId": "7504720507699200030",
2379
+ "actor": "urn:li:person:ePetr0v4Qs",
2380
+ "agent": null,
2381
+ "text": "Gratulacje!",
2382
+ "attributes": [],
2383
+ "parentCommentId": null,
2384
+ "createdAtMs": 1789290720000,
2385
+ "lastModifiedAtMs": 1789290720000
2386
+ }
2387
+ },
2388
+ {
2389
+ "action": "upsert",
2390
+ "packageId": "linkedin",
2391
+ "namespace": "reactions",
2392
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:sWh1tf1eld",
2393
+ "value": {
2394
+ "entity": "urn:li:activity:7504901701632000032",
2395
+ "actor": "urn:li:person:sWh1tf1eld",
2396
+ "reactionType": "LIKE",
2397
+ "impersonator": null,
2398
+ "createdAtMs": 1789312320000,
2399
+ "lastModifiedAtMs": 1789312320000
2400
+ }
2401
+ },
2402
+ {
2403
+ "action": "upsert",
2404
+ "packageId": "linkedin",
2405
+ "namespace": "reactions",
2406
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:pR4manQ7xz",
2407
+ "value": {
2408
+ "entity": "urn:li:activity:7504901701632000032",
2409
+ "actor": "urn:li:person:pR4manQ7xz",
2410
+ "reactionType": "PRAISE",
2411
+ "impersonator": null,
2412
+ "createdAtMs": 1789320960000,
2413
+ "lastModifiedAtMs": 1789320960000
2414
+ }
2415
+ },
2416
+ {
2417
+ "action": "upsert",
2418
+ "packageId": "linkedin",
2419
+ "namespace": "reactions",
2420
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:lC4rv4lho0",
2421
+ "value": {
2422
+ "entity": "urn:li:activity:7504901701632000032",
2423
+ "actor": "urn:li:person:lC4rv4lho0",
2424
+ "reactionType": "APPRECIATION",
2425
+ "impersonator": null,
2426
+ "createdAtMs": 1789329600000,
2427
+ "lastModifiedAtMs": 1789329600000
2428
+ }
2429
+ },
2430
+ {
2431
+ "action": "upsert",
2432
+ "packageId": "linkedin",
2433
+ "namespace": "reactions",
2434
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:zLuk4s1ew1",
2435
+ "value": {
2436
+ "entity": "urn:li:activity:7504901701632000032",
2437
+ "actor": "urn:li:person:zLuk4s1ew1",
2438
+ "reactionType": "EMPATHY",
2439
+ "impersonator": null,
2440
+ "createdAtMs": 1789346880000,
2441
+ "lastModifiedAtMs": 1789346880000
2442
+ }
2443
+ },
2444
+ {
2445
+ "action": "upsert",
2446
+ "packageId": "linkedin",
2447
+ "namespace": "reactions",
2448
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:dMens4hK2p",
2449
+ "value": {
2450
+ "entity": "urn:li:activity:7504901701632000032",
2451
+ "actor": "urn:li:person:dMens4hK2p",
2452
+ "reactionType": "INTEREST",
2453
+ "impersonator": null,
2454
+ "createdAtMs": 1789355520000,
2455
+ "lastModifiedAtMs": 1789355520000
2456
+ }
2457
+ },
2458
+ {
2459
+ "action": "upsert",
2460
+ "packageId": "linkedin",
2461
+ "namespace": "reactions",
2462
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:aT4nak4Rr8",
2463
+ "value": {
2464
+ "entity": "urn:li:activity:7504901701632000032",
2465
+ "actor": "urn:li:person:aT4nak4Rr8",
2466
+ "reactionType": "ENTERTAINMENT",
2467
+ "impersonator": null,
2468
+ "createdAtMs": 1789364160000,
2469
+ "lastModifiedAtMs": 1789364160000
2470
+ }
2471
+ },
2472
+ {
2473
+ "action": "upsert",
2474
+ "packageId": "linkedin",
2475
+ "namespace": "reactions",
2476
+ "rowId": "urn:li:activity:7496566780723200004|urn:li:person:mOk4f0rPx1",
2477
+ "value": {
2478
+ "entity": "urn:li:activity:7496566780723200004",
2479
+ "actor": "urn:li:person:mOk4f0rPx1",
2480
+ "reactionType": "LIKE",
2481
+ "impersonator": null,
2482
+ "createdAtMs": 1787364000000,
2483
+ "lastModifiedAtMs": 1787364000000
2484
+ }
2485
+ },
2486
+ {
2487
+ "action": "upsert",
2488
+ "packageId": "linkedin",
2489
+ "namespace": "reactions",
2490
+ "rowId": "urn:li:activity:7502364986572800014|urn:li:organization:81234567",
2491
+ "value": {
2492
+ "entity": "urn:li:activity:7502364986572800014",
2493
+ "actor": "urn:li:organization:81234567",
2494
+ "reactionType": "PRAISE",
2495
+ "impersonator": "mOk4f0rPx1",
2496
+ "createdAtMs": 1788720480000,
2497
+ "lastModifiedAtMs": 1788720480000
2498
+ }
2499
+ },
2500
+ {
2501
+ "action": "upsert",
2502
+ "packageId": "linkedin",
2503
+ "namespace": "reactions",
2504
+ "rowId": "urn:li:comment:(urn:li:activity:7504901701632000032,7504937940418560039)|urn:li:person:mOk4f0rPx1",
2505
+ "value": {
2506
+ "entity": "urn:li:comment:(urn:li:activity:7504901701632000032,7504937940418560039)",
2507
+ "actor": "urn:li:person:mOk4f0rPx1",
2508
+ "reactionType": "LIKE",
2509
+ "impersonator": null,
2510
+ "createdAtMs": 1789333920000,
2511
+ "lastModifiedAtMs": 1789333920000
2512
+ }
2513
+ },
2514
+ {
2515
+ "action": "upsert",
2516
+ "packageId": "linkedin",
2517
+ "namespace": "reactions",
2518
+ "rowId": "urn:li:comment:(urn:li:activity:7504901701632000032,7505010417991680041)|urn:li:person:sWh1tf1eld",
2519
+ "value": {
2520
+ "entity": "urn:li:comment:(urn:li:activity:7504901701632000032,7505010417991680041)",
2521
+ "actor": "urn:li:person:sWh1tf1eld",
2522
+ "reactionType": "LIKE",
2523
+ "impersonator": null,
2524
+ "createdAtMs": 1789338240000,
2525
+ "lastModifiedAtMs": 1789338240000
2526
+ }
2527
+ },
2528
+ {
2529
+ "action": "upsert",
2530
+ "packageId": "linkedin",
2531
+ "namespace": "reactions",
2532
+ "rowId": "urn:li:activity:7503089762304000018|urn:li:person:gOduy4Lm3n",
2533
+ "value": {
2534
+ "entity": "urn:li:activity:7503089762304000018",
2535
+ "actor": "urn:li:person:gOduy4Lm3n",
2536
+ "reactionType": "INTEREST",
2537
+ "impersonator": null,
2538
+ "createdAtMs": 1788893280000,
2539
+ "lastModifiedAtMs": 1788893280000
2540
+ }
2541
+ },
2542
+ {
2543
+ "action": "upsert",
2544
+ "packageId": "linkedin",
2545
+ "namespace": "reactions",
2546
+ "rowId": "urn:li:activity:7503089762304000018|urn:li:person:nH4dd4dPq2",
2547
+ "value": {
2548
+ "entity": "urn:li:activity:7503089762304000018",
2549
+ "actor": "urn:li:person:nH4dd4dPq2",
2550
+ "reactionType": "LIKE",
2551
+ "impersonator": null,
2552
+ "createdAtMs": 1788901920000,
2553
+ "lastModifiedAtMs": 1788901920000
2554
+ }
2555
+ },
2556
+ {
2557
+ "action": "upsert",
2558
+ "packageId": "linkedin",
2559
+ "namespace": "reactions",
2560
+ "rowId": "urn:li:activity:7504720507699200030|urn:li:person:mOk4f0rPx1",
2561
+ "value": {
2562
+ "entity": "urn:li:activity:7504720507699200030",
2563
+ "actor": "urn:li:person:mOk4f0rPx1",
2564
+ "reactionType": "EMPATHY",
2565
+ "impersonator": null,
2566
+ "createdAtMs": 1789269120000,
2567
+ "lastModifiedAtMs": 1789269120000
2568
+ }
2569
+ },
2570
+ {
2571
+ "action": "upsert",
2572
+ "packageId": "linkedin",
2573
+ "namespace": "reactions",
2574
+ "rowId": "urn:li:activity:7504176925900800026|urn:li:person:jR3yesVv0q",
2575
+ "value": {
2576
+ "entity": "urn:li:activity:7504176925900800026",
2577
+ "actor": "urn:li:person:jR3yesVv0q",
2578
+ "reactionType": "LIKE",
2579
+ "impersonator": null,
2580
+ "createdAtMs": 1789143840000,
2581
+ "lastModifiedAtMs": 1789143840000
2582
+ }
2583
+ }
2584
+ ]
2585
+ }