@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
package/starter.json ADDED
@@ -0,0 +1,1833 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "virtualTimeUs": 1789480800000000,
4
+ "state": [
5
+ {
6
+ "action": "upsert",
7
+ "packageId": "linkedin",
8
+ "namespace": "meta",
9
+ "rowId": "network",
10
+ "value": {
11
+ "name": "Northwind professional network",
12
+ "defaultPersonId": "mOk4f0rPx1"
13
+ }
14
+ },
15
+ {
16
+ "action": "upsert",
17
+ "packageId": "linkedin",
18
+ "namespace": "meta",
19
+ "rowId": "counters",
20
+ "value": {
21
+ "seq": 50
22
+ }
23
+ },
24
+ {
25
+ "action": "upsert",
26
+ "packageId": "linkedin",
27
+ "namespace": "meta",
28
+ "rowId": "limits",
29
+ "value": {
30
+ "maxScanRows": 5000
31
+ }
32
+ },
33
+ {
34
+ "action": "upsert",
35
+ "packageId": "linkedin",
36
+ "namespace": "people",
37
+ "rowId": "mOk4f0rPx1",
38
+ "value": {
39
+ "id": "mOk4f0rPx1",
40
+ "firstName": "Maya",
41
+ "lastName": "Okafor",
42
+ "headline": "Head of Data Platform at Northwind Analytics",
43
+ "vanityName": "maya-okafor",
44
+ "email": "maya.okafor@example.com",
45
+ "emailVerified": true,
46
+ "locale": {
47
+ "country": "US",
48
+ "language": "en"
49
+ },
50
+ "pictureUrl": "https://media.example.com/profiles/mOk4f0rPx1.jpg",
51
+ "location": "San Francisco Bay Area",
52
+ "followingOrganizationIds": [
53
+ 81234567,
54
+ 81234568
55
+ ],
56
+ "createdAtMs": 1711720800000
57
+ }
58
+ },
59
+ {
60
+ "action": "upsert",
61
+ "packageId": "linkedin",
62
+ "namespace": "people",
63
+ "rowId": "sWh1tf1eld",
64
+ "value": {
65
+ "id": "sWh1tf1eld",
66
+ "firstName": "Sam",
67
+ "lastName": "Whitfield",
68
+ "headline": "Robotics Program Lead at Brightline Robotics",
69
+ "vanityName": "sam-whitfield",
70
+ "email": "sam.whitfield@example.com",
71
+ "emailVerified": true,
72
+ "locale": {
73
+ "country": "US",
74
+ "language": "en"
75
+ },
76
+ "pictureUrl": "https://media.example.com/profiles/sWh1tf1eld.jpg",
77
+ "location": "Pittsburgh, Pennsylvania",
78
+ "followingOrganizationIds": [],
79
+ "createdAtMs": 1711720800000
80
+ }
81
+ },
82
+ {
83
+ "action": "upsert",
84
+ "packageId": "linkedin",
85
+ "namespace": "people",
86
+ "rowId": "pR4manQ7xz",
87
+ "value": {
88
+ "id": "pR4manQ7xz",
89
+ "firstName": "Priya",
90
+ "lastName": "Raman",
91
+ "headline": "Content Strategist at Northwind Analytics",
92
+ "vanityName": "priya-raman",
93
+ "email": "priya.raman@example.com",
94
+ "emailVerified": true,
95
+ "locale": {
96
+ "country": "US",
97
+ "language": "en"
98
+ },
99
+ "pictureUrl": "https://media.example.com/profiles/pR4manQ7xz.jpg",
100
+ "location": "San Francisco Bay Area",
101
+ "followingOrganizationIds": [
102
+ 81234567
103
+ ],
104
+ "createdAtMs": 1711720800000
105
+ }
106
+ },
107
+ {
108
+ "action": "upsert",
109
+ "packageId": "linkedin",
110
+ "namespace": "people",
111
+ "rowId": "lC4rv4lho0",
112
+ "value": {
113
+ "id": "lC4rv4lho0",
114
+ "firstName": "Luis",
115
+ "lastName": "Carvalho",
116
+ "headline": "Former Operations Manager at Northwind Analytics",
117
+ "vanityName": "luis-carvalho",
118
+ "email": "luis.carvalho@example.com",
119
+ "emailVerified": true,
120
+ "locale": {
121
+ "country": "BR",
122
+ "language": "pt"
123
+ },
124
+ "pictureUrl": "https://media.example.com/profiles/lC4rv4lho0.jpg",
125
+ "location": "Lisbon",
126
+ "followingOrganizationIds": [],
127
+ "createdAtMs": 1711720800000
128
+ }
129
+ },
130
+ {
131
+ "action": "upsert",
132
+ "packageId": "linkedin",
133
+ "namespace": "people",
134
+ "rowId": "zLuk4s1ew1",
135
+ "value": {
136
+ "id": "zLuk4s1ew1",
137
+ "firstName": "Zoë",
138
+ "lastName": "Łukasiewicz",
139
+ "headline": null,
140
+ "vanityName": "zoe-lukasiewicz",
141
+ "email": "zoe.lukasiewicz@example.com",
142
+ "emailVerified": true,
143
+ "locale": {
144
+ "country": "PL",
145
+ "language": "pl"
146
+ },
147
+ "pictureUrl": "https://media.example.com/profiles/zLuk4s1ew1.jpg",
148
+ "location": "Kraków",
149
+ "followingOrganizationIds": [],
150
+ "createdAtMs": 1711720800000
151
+ }
152
+ },
153
+ {
154
+ "action": "upsert",
155
+ "packageId": "linkedin",
156
+ "namespace": "people",
157
+ "rowId": "dMens4hK2p",
158
+ "value": {
159
+ "id": "dMens4hK2p",
160
+ "firstName": "Daniel",
161
+ "lastName": "Mensah",
162
+ "headline": "Senior Data Engineer",
163
+ "vanityName": "daniel-mensah",
164
+ "email": "daniel.mensah@example.com",
165
+ "emailVerified": true,
166
+ "locale": {
167
+ "country": "US",
168
+ "language": "en"
169
+ },
170
+ "pictureUrl": "https://media.example.com/profiles/dMens4hK2p.jpg",
171
+ "location": "Accra",
172
+ "followingOrganizationIds": [],
173
+ "createdAtMs": 1711720800000
174
+ }
175
+ },
176
+ {
177
+ "action": "upsert",
178
+ "packageId": "linkedin",
179
+ "namespace": "people",
180
+ "rowId": "aT4nak4Rr8",
181
+ "value": {
182
+ "id": "aT4nak4Rr8",
183
+ "firstName": "Aiko",
184
+ "lastName": "Tanaka",
185
+ "headline": "Machine Learning Researcher at Lakeview Institute of Technology",
186
+ "vanityName": "aiko-tanaka",
187
+ "email": "aiko.tanaka@example.com",
188
+ "emailVerified": true,
189
+ "locale": {
190
+ "country": "US",
191
+ "language": "en"
192
+ },
193
+ "pictureUrl": "https://media.example.com/profiles/aT4nak4Rr8.jpg",
194
+ "location": "San Francisco Bay Area",
195
+ "followingOrganizationIds": [
196
+ 81234569
197
+ ],
198
+ "createdAtMs": 1711720800000
199
+ }
200
+ },
201
+ {
202
+ "action": "upsert",
203
+ "packageId": "linkedin",
204
+ "namespace": "people",
205
+ "rowId": "gOduy4Lm3n",
206
+ "value": {
207
+ "id": "gOduy4Lm3n",
208
+ "firstName": "Grace",
209
+ "lastName": "Oduya",
210
+ "headline": "Product Designer",
211
+ "vanityName": "grace-oduya",
212
+ "email": "grace.oduya@example.com",
213
+ "emailVerified": true,
214
+ "locale": {
215
+ "country": "US",
216
+ "language": "en"
217
+ },
218
+ "pictureUrl": "https://media.example.com/profiles/gOduy4Lm3n.jpg",
219
+ "location": "Nairobi",
220
+ "followingOrganizationIds": [],
221
+ "createdAtMs": 1711720800000
222
+ }
223
+ },
224
+ {
225
+ "action": "upsert",
226
+ "packageId": "linkedin",
227
+ "namespace": "people",
228
+ "rowId": "jR3yesVv0q",
229
+ "value": {
230
+ "id": "jR3yesVv0q",
231
+ "firstName": "Jordan",
232
+ "lastName": "Reyes",
233
+ "headline": "Founder, Reyes Field Studio",
234
+ "vanityName": "jordan-reyes",
235
+ "email": "jordan.reyes@example.com",
236
+ "emailVerified": true,
237
+ "locale": {
238
+ "country": "US",
239
+ "language": "en"
240
+ },
241
+ "pictureUrl": "https://media.example.com/profiles/jR3yesVv0q.jpg",
242
+ "location": "Austin, Texas",
243
+ "followingOrganizationIds": [],
244
+ "createdAtMs": 1711720800000
245
+ }
246
+ },
247
+ {
248
+ "action": "upsert",
249
+ "packageId": "linkedin",
250
+ "namespace": "people",
251
+ "rowId": "ePetr0v4Qs",
252
+ "value": {
253
+ "id": "ePetr0v4Qs",
254
+ "firstName": "Elena",
255
+ "lastName": "Petrova",
256
+ "headline": "Analytics Consultant",
257
+ "vanityName": "elena-petrova",
258
+ "email": "elena.petrova@example.com",
259
+ "emailVerified": true,
260
+ "locale": {
261
+ "country": "US",
262
+ "language": "en"
263
+ },
264
+ "pictureUrl": "https://media.example.com/profiles/ePetr0v4Qs.jpg",
265
+ "location": "Sofia",
266
+ "followingOrganizationIds": [],
267
+ "createdAtMs": 1711720800000
268
+ }
269
+ },
270
+ {
271
+ "action": "upsert",
272
+ "packageId": "linkedin",
273
+ "namespace": "people",
274
+ "rowId": "tIb4n3zX0p",
275
+ "value": {
276
+ "id": "tIb4n3zX0p",
277
+ "firstName": "Tomás",
278
+ "lastName": "Ibáñez",
279
+ "headline": "Independent UX Researcher",
280
+ "vanityName": "tomas-ibanez",
281
+ "email": null,
282
+ "emailVerified": false,
283
+ "locale": {
284
+ "country": "ES",
285
+ "language": "es"
286
+ },
287
+ "pictureUrl": null,
288
+ "location": "Valencia",
289
+ "followingOrganizationIds": [],
290
+ "createdAtMs": 1711720800000
291
+ }
292
+ },
293
+ {
294
+ "action": "upsert",
295
+ "packageId": "linkedin",
296
+ "namespace": "people",
297
+ "rowId": "nH4dd4dPq2",
298
+ "value": {
299
+ "id": "nH4dd4dPq2",
300
+ "firstName": "Noor",
301
+ "lastName": "Haddad",
302
+ "headline": "Mechanical Engineer at Brightline Robotics",
303
+ "vanityName": "noor-haddad",
304
+ "email": "noor.haddad@example.com",
305
+ "emailVerified": true,
306
+ "locale": {
307
+ "country": "US",
308
+ "language": "en"
309
+ },
310
+ "pictureUrl": "https://media.example.com/profiles/nH4dd4dPq2.jpg",
311
+ "location": "Amman",
312
+ "followingOrganizationIds": [],
313
+ "createdAtMs": 1711720800000
314
+ }
315
+ },
316
+ {
317
+ "action": "upsert",
318
+ "packageId": "linkedin",
319
+ "namespace": "connections",
320
+ "rowId": "mOk4f0rPx1|sWh1tf1eld",
321
+ "value": {
322
+ "personId": "mOk4f0rPx1",
323
+ "connectedPersonId": "sWh1tf1eld",
324
+ "connectedAtMs": 1754920800000
325
+ }
326
+ },
327
+ {
328
+ "action": "upsert",
329
+ "packageId": "linkedin",
330
+ "namespace": "connections",
331
+ "rowId": "sWh1tf1eld|mOk4f0rPx1",
332
+ "value": {
333
+ "personId": "sWh1tf1eld",
334
+ "connectedPersonId": "mOk4f0rPx1",
335
+ "connectedAtMs": 1754920800000
336
+ }
337
+ },
338
+ {
339
+ "action": "upsert",
340
+ "packageId": "linkedin",
341
+ "namespace": "connections",
342
+ "rowId": "mOk4f0rPx1|pR4manQ7xz",
343
+ "value": {
344
+ "personId": "mOk4f0rPx1",
345
+ "connectedPersonId": "pR4manQ7xz",
346
+ "connectedAtMs": 1759240800000
347
+ }
348
+ },
349
+ {
350
+ "action": "upsert",
351
+ "packageId": "linkedin",
352
+ "namespace": "connections",
353
+ "rowId": "pR4manQ7xz|mOk4f0rPx1",
354
+ "value": {
355
+ "personId": "pR4manQ7xz",
356
+ "connectedPersonId": "mOk4f0rPx1",
357
+ "connectedAtMs": 1759240800000
358
+ }
359
+ },
360
+ {
361
+ "action": "upsert",
362
+ "packageId": "linkedin",
363
+ "namespace": "connections",
364
+ "rowId": "mOk4f0rPx1|lC4rv4lho0",
365
+ "value": {
366
+ "personId": "mOk4f0rPx1",
367
+ "connectedPersonId": "lC4rv4lho0",
368
+ "connectedAtMs": 1763560800000
369
+ }
370
+ },
371
+ {
372
+ "action": "upsert",
373
+ "packageId": "linkedin",
374
+ "namespace": "connections",
375
+ "rowId": "lC4rv4lho0|mOk4f0rPx1",
376
+ "value": {
377
+ "personId": "lC4rv4lho0",
378
+ "connectedPersonId": "mOk4f0rPx1",
379
+ "connectedAtMs": 1763560800000
380
+ }
381
+ },
382
+ {
383
+ "action": "upsert",
384
+ "packageId": "linkedin",
385
+ "namespace": "connections",
386
+ "rowId": "mOk4f0rPx1|zLuk4s1ew1",
387
+ "value": {
388
+ "personId": "mOk4f0rPx1",
389
+ "connectedPersonId": "zLuk4s1ew1",
390
+ "connectedAtMs": 1779112800000
391
+ }
392
+ },
393
+ {
394
+ "action": "upsert",
395
+ "packageId": "linkedin",
396
+ "namespace": "connections",
397
+ "rowId": "zLuk4s1ew1|mOk4f0rPx1",
398
+ "value": {
399
+ "personId": "zLuk4s1ew1",
400
+ "connectedPersonId": "mOk4f0rPx1",
401
+ "connectedAtMs": 1779112800000
402
+ }
403
+ },
404
+ {
405
+ "action": "upsert",
406
+ "packageId": "linkedin",
407
+ "namespace": "connections",
408
+ "rowId": "mOk4f0rPx1|dMens4hK2p",
409
+ "value": {
410
+ "personId": "mOk4f0rPx1",
411
+ "connectedPersonId": "dMens4hK2p",
412
+ "connectedAtMs": 1784296800000
413
+ }
414
+ },
415
+ {
416
+ "action": "upsert",
417
+ "packageId": "linkedin",
418
+ "namespace": "connections",
419
+ "rowId": "dMens4hK2p|mOk4f0rPx1",
420
+ "value": {
421
+ "personId": "dMens4hK2p",
422
+ "connectedPersonId": "mOk4f0rPx1",
423
+ "connectedAtMs": 1784296800000
424
+ }
425
+ },
426
+ {
427
+ "action": "upsert",
428
+ "packageId": "linkedin",
429
+ "namespace": "connections",
430
+ "rowId": "mOk4f0rPx1|aT4nak4Rr8",
431
+ "value": {
432
+ "personId": "mOk4f0rPx1",
433
+ "connectedPersonId": "aT4nak4Rr8",
434
+ "connectedAtMs": 1784296800000
435
+ }
436
+ },
437
+ {
438
+ "action": "upsert",
439
+ "packageId": "linkedin",
440
+ "namespace": "connections",
441
+ "rowId": "aT4nak4Rr8|mOk4f0rPx1",
442
+ "value": {
443
+ "personId": "aT4nak4Rr8",
444
+ "connectedPersonId": "mOk4f0rPx1",
445
+ "connectedAtMs": 1784296800000
446
+ }
447
+ },
448
+ {
449
+ "action": "upsert",
450
+ "packageId": "linkedin",
451
+ "namespace": "connections",
452
+ "rowId": "mOk4f0rPx1|gOduy4Lm3n",
453
+ "value": {
454
+ "personId": "mOk4f0rPx1",
455
+ "connectedPersonId": "gOduy4Lm3n",
456
+ "connectedAtMs": 1786888800000
457
+ }
458
+ },
459
+ {
460
+ "action": "upsert",
461
+ "packageId": "linkedin",
462
+ "namespace": "connections",
463
+ "rowId": "gOduy4Lm3n|mOk4f0rPx1",
464
+ "value": {
465
+ "personId": "gOduy4Lm3n",
466
+ "connectedPersonId": "mOk4f0rPx1",
467
+ "connectedAtMs": 1786888800000
468
+ }
469
+ },
470
+ {
471
+ "action": "upsert",
472
+ "packageId": "linkedin",
473
+ "namespace": "connections",
474
+ "rowId": "jR3yesVv0q|ePetr0v4Qs",
475
+ "value": {
476
+ "personId": "jR3yesVv0q",
477
+ "connectedPersonId": "ePetr0v4Qs",
478
+ "connectedAtMs": 1772200800000
479
+ }
480
+ },
481
+ {
482
+ "action": "upsert",
483
+ "packageId": "linkedin",
484
+ "namespace": "connections",
485
+ "rowId": "ePetr0v4Qs|jR3yesVv0q",
486
+ "value": {
487
+ "personId": "ePetr0v4Qs",
488
+ "connectedPersonId": "jR3yesVv0q",
489
+ "connectedAtMs": 1772200800000
490
+ }
491
+ },
492
+ {
493
+ "action": "upsert",
494
+ "packageId": "linkedin",
495
+ "namespace": "connections",
496
+ "rowId": "sWh1tf1eld|nH4dd4dPq2",
497
+ "value": {
498
+ "personId": "sWh1tf1eld",
499
+ "connectedPersonId": "nH4dd4dPq2",
500
+ "connectedAtMs": 1776520800000
501
+ }
502
+ },
503
+ {
504
+ "action": "upsert",
505
+ "packageId": "linkedin",
506
+ "namespace": "connections",
507
+ "rowId": "nH4dd4dPq2|sWh1tf1eld",
508
+ "value": {
509
+ "personId": "nH4dd4dPq2",
510
+ "connectedPersonId": "sWh1tf1eld",
511
+ "connectedAtMs": 1776520800000
512
+ }
513
+ },
514
+ {
515
+ "action": "upsert",
516
+ "packageId": "linkedin",
517
+ "namespace": "organizations",
518
+ "rowId": "81234567",
519
+ "value": {
520
+ "id": 81234567,
521
+ "name": "Northwind Analytics",
522
+ "vanityName": "northwind-analytics",
523
+ "description": "Northwind Analytics builds data platforms that help mid-size retailers forecast demand. (Fictional company.)",
524
+ "website": "https://northwind-analytics.example.com",
525
+ "industries": [
526
+ "urn:li:industry:4"
527
+ ],
528
+ "staffCountRange": "SIZE_51_TO_200",
529
+ "organizationType": "PRIVATELY_HELD",
530
+ "primaryOrganizationType": "NONE",
531
+ "locations": [
532
+ {
533
+ "city": "Oakland",
534
+ "country": "US",
535
+ "geographicArea": "California",
536
+ "postalCode": "94607"
537
+ }
538
+ ],
539
+ "foundedOn": {
540
+ "year": 2016
541
+ },
542
+ "followerCount": 4821,
543
+ "localeCountry": "US",
544
+ "localeLanguage": "en",
545
+ "createdAtMs": 1530280800000
546
+ }
547
+ },
548
+ {
549
+ "action": "upsert",
550
+ "packageId": "linkedin",
551
+ "namespace": "organizations",
552
+ "rowId": "81234568",
553
+ "value": {
554
+ "id": 81234568,
555
+ "name": "Brightline Robotics",
556
+ "vanityName": "brightline-robotics",
557
+ "description": null,
558
+ "website": "https://brightline-robotics.example.com",
559
+ "industries": [
560
+ "urn:li:industry:135"
561
+ ],
562
+ "staffCountRange": "SIZE_201_TO_500",
563
+ "organizationType": "PUBLIC_COMPANY",
564
+ "primaryOrganizationType": "NONE",
565
+ "locations": [
566
+ {
567
+ "city": "Pittsburgh",
568
+ "country": "US",
569
+ "geographicArea": "Pennsylvania",
570
+ "postalCode": "15222"
571
+ }
572
+ ],
573
+ "foundedOn": {
574
+ "year": 2011
575
+ },
576
+ "followerCount": 12950,
577
+ "localeCountry": "US",
578
+ "localeLanguage": "en",
579
+ "createdAtMs": 1487080800000
580
+ }
581
+ },
582
+ {
583
+ "action": "upsert",
584
+ "packageId": "linkedin",
585
+ "namespace": "organizations",
586
+ "rowId": "81234569",
587
+ "value": {
588
+ "id": 81234569,
589
+ "name": "Lakeview Institute of Technology",
590
+ "vanityName": "lakeview-tech",
591
+ "description": "A fictional technical university on the lake shore.",
592
+ "website": "https://lakeview-tech.example.edu",
593
+ "industries": [
594
+ "urn:li:industry:68"
595
+ ],
596
+ "staffCountRange": "SIZE_1001_TO_5000",
597
+ "organizationType": "EDUCATIONAL",
598
+ "primaryOrganizationType": "SCHOOL",
599
+ "locations": [
600
+ {
601
+ "city": "Lakeview",
602
+ "country": "US",
603
+ "geographicArea": "Illinois",
604
+ "postalCode": null
605
+ },
606
+ {
607
+ "city": "Toronto",
608
+ "country": "CA",
609
+ "geographicArea": "Ontario",
610
+ "postalCode": null
611
+ }
612
+ ],
613
+ "foundedOn": {
614
+ "year": 1921
615
+ },
616
+ "followerCount": 30412,
617
+ "localeCountry": "US",
618
+ "localeLanguage": "en",
619
+ "createdAtMs": 1443880800000
620
+ }
621
+ },
622
+ {
623
+ "action": "upsert",
624
+ "packageId": "linkedin",
625
+ "namespace": "org-vanity",
626
+ "rowId": "northwind-analytics",
627
+ "value": {
628
+ "organizationId": 81234567
629
+ }
630
+ },
631
+ {
632
+ "action": "upsert",
633
+ "packageId": "linkedin",
634
+ "namespace": "org-vanity",
635
+ "rowId": "brightline-robotics",
636
+ "value": {
637
+ "organizationId": 81234568
638
+ }
639
+ },
640
+ {
641
+ "action": "upsert",
642
+ "packageId": "linkedin",
643
+ "namespace": "org-vanity",
644
+ "rowId": "lakeview-tech",
645
+ "value": {
646
+ "organizationId": 81234569
647
+ }
648
+ },
649
+ {
650
+ "action": "upsert",
651
+ "packageId": "linkedin",
652
+ "namespace": "organization-acls",
653
+ "rowId": "81234567|mOk4f0rPx1|ADMINISTRATOR",
654
+ "value": {
655
+ "organizationId": 81234567,
656
+ "personId": "mOk4f0rPx1",
657
+ "role": "ADMINISTRATOR",
658
+ "state": "APPROVED",
659
+ "createdAtMs": 1729000800000,
660
+ "lastModifiedAtMs": 1729000800000
661
+ }
662
+ },
663
+ {
664
+ "action": "upsert",
665
+ "packageId": "linkedin",
666
+ "namespace": "organization-acls",
667
+ "rowId": "81234567|pR4manQ7xz|CONTENT_ADMINISTRATOR",
668
+ "value": {
669
+ "organizationId": 81234567,
670
+ "personId": "pR4manQ7xz",
671
+ "role": "CONTENT_ADMINISTRATOR",
672
+ "state": "APPROVED",
673
+ "createdAtMs": 1746280800000,
674
+ "lastModifiedAtMs": 1746280800000
675
+ }
676
+ },
677
+ {
678
+ "action": "upsert",
679
+ "packageId": "linkedin",
680
+ "namespace": "organization-acls",
681
+ "rowId": "81234567|lC4rv4lho0|ADMINISTRATOR",
682
+ "value": {
683
+ "organizationId": 81234567,
684
+ "personId": "lC4rv4lho0",
685
+ "role": "ADMINISTRATOR",
686
+ "state": "REVOKED",
687
+ "createdAtMs": 1737640800000,
688
+ "lastModifiedAtMs": 1737640800000
689
+ }
690
+ },
691
+ {
692
+ "action": "upsert",
693
+ "packageId": "linkedin",
694
+ "namespace": "organization-acls",
695
+ "rowId": "81234568|mOk4f0rPx1|DIRECT_SPONSORED_CONTENT_POSTER",
696
+ "value": {
697
+ "organizationId": 81234568,
698
+ "personId": "mOk4f0rPx1",
699
+ "role": "DIRECT_SPONSORED_CONTENT_POSTER",
700
+ "state": "REQUESTED",
701
+ "createdAtMs": 1787752800000,
702
+ "lastModifiedAtMs": 1787752800000
703
+ }
704
+ },
705
+ {
706
+ "action": "upsert",
707
+ "packageId": "linkedin",
708
+ "namespace": "organization-acls",
709
+ "rowId": "81234568|sWh1tf1eld|ADMINISTRATOR",
710
+ "value": {
711
+ "organizationId": 81234568,
712
+ "personId": "sWh1tf1eld",
713
+ "role": "ADMINISTRATOR",
714
+ "state": "APPROVED",
715
+ "createdAtMs": 1711720800000,
716
+ "lastModifiedAtMs": 1711720800000
717
+ }
718
+ },
719
+ {
720
+ "action": "upsert",
721
+ "packageId": "linkedin",
722
+ "namespace": "organization-acls",
723
+ "rowId": "81234569|mOk4f0rPx1|ANALYST",
724
+ "value": {
725
+ "organizationId": 81234569,
726
+ "personId": "mOk4f0rPx1",
727
+ "role": "ANALYST",
728
+ "state": "APPROVED",
729
+ "createdAtMs": 1781704800000,
730
+ "lastModifiedAtMs": 1781704800000
731
+ }
732
+ },
733
+ {
734
+ "action": "upsert",
735
+ "packageId": "linkedin",
736
+ "namespace": "posts",
737
+ "rowId": "7495479617126400001",
738
+ "value": {
739
+ "id": "7495479617126400001",
740
+ "kind": "share",
741
+ "activityId": "7495479617126400002",
742
+ "author": "urn:li:person:mOk4f0rPx1",
743
+ "commentary": "",
744
+ "visibility": "PUBLIC",
745
+ "feedDistribution": "MAIN_FEED",
746
+ "lifecycleState": "PUBLISHED",
747
+ "isReshareDisabledByAuthor": false,
748
+ "isEditedByAuthor": false,
749
+ "article": null,
750
+ "reshareParent": null,
751
+ "reshareRoot": null,
752
+ "commentsState": "OPEN",
753
+ "createdBy": "mOk4f0rPx1",
754
+ "createdAtMs": 1787061600000,
755
+ "lastModifiedAtMs": 1787148000000,
756
+ "publishedAtMs": 1787061600000,
757
+ "deletedAtMs": 1787148000000
758
+ }
759
+ },
760
+ {
761
+ "action": "upsert",
762
+ "packageId": "linkedin",
763
+ "namespace": "posts",
764
+ "rowId": "7496566780723200003",
765
+ "value": {
766
+ "id": "7496566780723200003",
767
+ "kind": "share",
768
+ "activityId": "7496566780723200004",
769
+ "author": "urn:li:person:sWh1tf1eld",
770
+ "commentary": "Our warehouse robots just passed 1 million picks without a safety stop. Proud of this crew.",
771
+ "visibility": "PUBLIC",
772
+ "feedDistribution": "MAIN_FEED",
773
+ "lifecycleState": "PUBLISHED",
774
+ "isReshareDisabledByAuthor": false,
775
+ "isEditedByAuthor": false,
776
+ "article": null,
777
+ "reshareParent": null,
778
+ "reshareRoot": null,
779
+ "commentsState": "OPEN",
780
+ "createdBy": "sWh1tf1eld",
781
+ "createdAtMs": 1787320800000,
782
+ "lastModifiedAtMs": 1787320800000,
783
+ "publishedAtMs": 1787320800000,
784
+ "deletedAtMs": null
785
+ }
786
+ },
787
+ {
788
+ "action": "upsert",
789
+ "packageId": "linkedin",
790
+ "namespace": "posts",
791
+ "rowId": "7498378720051200005",
792
+ "value": {
793
+ "id": "7498378720051200005",
794
+ "kind": "share",
795
+ "activityId": "7498378720051200006",
796
+ "author": "urn:li:person:mOk4f0rPx1",
797
+ "commentary": "This is what careful rollout looks like.",
798
+ "visibility": "PUBLIC",
799
+ "feedDistribution": "MAIN_FEED",
800
+ "lifecycleState": "PUBLISHED",
801
+ "isReshareDisabledByAuthor": false,
802
+ "isEditedByAuthor": false,
803
+ "article": null,
804
+ "reshareParent": "urn:li:share:7496566780723200003",
805
+ "reshareRoot": "urn:li:share:7496566780723200003",
806
+ "commentsState": "OPEN",
807
+ "createdBy": "mOk4f0rPx1",
808
+ "createdAtMs": 1787752800000,
809
+ "lastModifiedAtMs": 1787752800000,
810
+ "publishedAtMs": 1787752800000,
811
+ "deletedAtMs": null
812
+ }
813
+ },
814
+ {
815
+ "action": "upsert",
816
+ "packageId": "linkedin",
817
+ "namespace": "posts",
818
+ "rowId": "7500190659379200007",
819
+ "value": {
820
+ "id": "7500190659379200007",
821
+ "kind": "ugcPost",
822
+ "activityId": "7500190659379200008",
823
+ "author": "urn:li:person:mOk4f0rPx1",
824
+ "commentary": "Posted from our old scheduling tool: Q3 data platform office hours are open to everyone.",
825
+ "visibility": "PUBLIC",
826
+ "feedDistribution": "MAIN_FEED",
827
+ "lifecycleState": "PUBLISHED",
828
+ "isReshareDisabledByAuthor": false,
829
+ "isEditedByAuthor": false,
830
+ "article": null,
831
+ "reshareParent": null,
832
+ "reshareRoot": null,
833
+ "commentsState": "OPEN",
834
+ "createdBy": "mOk4f0rPx1",
835
+ "createdAtMs": 1788184800000,
836
+ "lastModifiedAtMs": 1788184800000,
837
+ "publishedAtMs": 1788184800000,
838
+ "deletedAtMs": null
839
+ }
840
+ },
841
+ {
842
+ "action": "upsert",
843
+ "packageId": "linkedin",
844
+ "namespace": "posts",
845
+ "rowId": "7501277822976000009",
846
+ "value": {
847
+ "id": "7501277822976000009",
848
+ "kind": "share",
849
+ "activityId": "7501277822976000010",
850
+ "author": "urn:li:person:mOk4f0rPx1",
851
+ "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. ............................................................",
852
+ "visibility": "PUBLIC",
853
+ "feedDistribution": "MAIN_FEED",
854
+ "lifecycleState": "PUBLISHED",
855
+ "isReshareDisabledByAuthor": false,
856
+ "isEditedByAuthor": false,
857
+ "article": null,
858
+ "reshareParent": null,
859
+ "reshareRoot": null,
860
+ "commentsState": "OPEN",
861
+ "createdBy": "mOk4f0rPx1",
862
+ "createdAtMs": 1788444000000,
863
+ "lastModifiedAtMs": 1788444000000,
864
+ "publishedAtMs": 1788444000000,
865
+ "deletedAtMs": null
866
+ }
867
+ },
868
+ {
869
+ "action": "upsert",
870
+ "packageId": "linkedin",
871
+ "namespace": "posts",
872
+ "rowId": "7502002598707200011",
873
+ "value": {
874
+ "id": "7502002598707200011",
875
+ "kind": "share",
876
+ "activityId": "7502002598707200012",
877
+ "author": "urn:li:person:mOk4f0rPx1",
878
+ "commentary": "Announcing the end of our legacy reporting stack. Comments are closed; questions go to the internal channel.",
879
+ "visibility": "PUBLIC",
880
+ "feedDistribution": "MAIN_FEED",
881
+ "lifecycleState": "PUBLISHED",
882
+ "isReshareDisabledByAuthor": false,
883
+ "isEditedByAuthor": false,
884
+ "article": null,
885
+ "reshareParent": null,
886
+ "reshareRoot": null,
887
+ "commentsState": "CLOSED",
888
+ "createdBy": "mOk4f0rPx1",
889
+ "createdAtMs": 1788616800000,
890
+ "lastModifiedAtMs": 1788616800000,
891
+ "publishedAtMs": 1788616800000,
892
+ "deletedAtMs": null
893
+ }
894
+ },
895
+ {
896
+ "action": "upsert",
897
+ "packageId": "linkedin",
898
+ "namespace": "posts",
899
+ "rowId": "7502364986572800013",
900
+ "value": {
901
+ "id": "7502364986572800013",
902
+ "kind": "share",
903
+ "activityId": "7502364986572800014",
904
+ "author": "urn:li:organization:81234568",
905
+ "commentary": "Brightline Robotics opens its new assembly line in Pittsburgh today.",
906
+ "visibility": "PUBLIC",
907
+ "feedDistribution": "MAIN_FEED",
908
+ "lifecycleState": "PUBLISHED",
909
+ "isReshareDisabledByAuthor": true,
910
+ "isEditedByAuthor": false,
911
+ "article": null,
912
+ "reshareParent": null,
913
+ "reshareRoot": null,
914
+ "commentsState": "OPEN",
915
+ "createdBy": "sWh1tf1eld",
916
+ "createdAtMs": 1788703200000,
917
+ "lastModifiedAtMs": 1788703200000,
918
+ "publishedAtMs": 1788703200000,
919
+ "deletedAtMs": null
920
+ }
921
+ },
922
+ {
923
+ "action": "upsert",
924
+ "packageId": "linkedin",
925
+ "namespace": "posts",
926
+ "rowId": "7502727374438400015",
927
+ "value": {
928
+ "id": "7502727374438400015",
929
+ "kind": "share",
930
+ "activityId": "7502727374438400016",
931
+ "author": "urn:li:person:mOk4f0rPx1",
932
+ "commentary": "Updated: our data contracts template now covers late-arriving events.",
933
+ "visibility": "PUBLIC",
934
+ "feedDistribution": "MAIN_FEED",
935
+ "lifecycleState": "PUBLISHED",
936
+ "isReshareDisabledByAuthor": false,
937
+ "isEditedByAuthor": true,
938
+ "article": null,
939
+ "reshareParent": null,
940
+ "reshareRoot": null,
941
+ "commentsState": "OPEN",
942
+ "createdBy": "mOk4f0rPx1",
943
+ "createdAtMs": 1788789600000,
944
+ "lastModifiedAtMs": 1789437600000,
945
+ "publishedAtMs": 1788789600000,
946
+ "deletedAtMs": null
947
+ }
948
+ },
949
+ {
950
+ "action": "upsert",
951
+ "packageId": "linkedin",
952
+ "namespace": "posts",
953
+ "rowId": "7503089762304000017",
954
+ "value": {
955
+ "id": "7503089762304000017",
956
+ "kind": "share",
957
+ "activityId": "7503089762304000018",
958
+ "author": "urn:li:organization:81234567",
959
+ "commentary": "Our annual retail forecasting report is out.",
960
+ "visibility": "PUBLIC",
961
+ "feedDistribution": "MAIN_FEED",
962
+ "lifecycleState": "PUBLISHED",
963
+ "isReshareDisabledByAuthor": false,
964
+ "isEditedByAuthor": false,
965
+ "article": {
966
+ "source": "https://northwind-analytics.example.com/reports/forecasting-2026",
967
+ "title": "Retail Forecasting Report 2026",
968
+ "description": null
969
+ },
970
+ "reshareParent": null,
971
+ "reshareRoot": null,
972
+ "commentsState": "OPEN",
973
+ "createdBy": "pR4manQ7xz",
974
+ "createdAtMs": 1788876000000,
975
+ "lastModifiedAtMs": 1788876000000,
976
+ "publishedAtMs": 1788876000000,
977
+ "deletedAtMs": null
978
+ }
979
+ },
980
+ {
981
+ "action": "upsert",
982
+ "packageId": "linkedin",
983
+ "namespace": "posts",
984
+ "rowId": "7503452150169600019",
985
+ "value": {
986
+ "id": "7503452150169600019",
987
+ "kind": "share",
988
+ "activityId": "7503452150169600020",
989
+ "author": "urn:li:person:mOk4f0rPx1",
990
+ "commentary": "Members-only notes from the Data Platform Summit.",
991
+ "visibility": "LOGGED_IN",
992
+ "feedDistribution": "MAIN_FEED",
993
+ "lifecycleState": "PUBLISHED",
994
+ "isReshareDisabledByAuthor": false,
995
+ "isEditedByAuthor": false,
996
+ "article": null,
997
+ "reshareParent": null,
998
+ "reshareRoot": null,
999
+ "commentsState": "OPEN",
1000
+ "createdBy": "mOk4f0rPx1",
1001
+ "createdAtMs": 1788962400000,
1002
+ "lastModifiedAtMs": 1788962400000,
1003
+ "publishedAtMs": 1788962400000,
1004
+ "deletedAtMs": null
1005
+ }
1006
+ },
1007
+ {
1008
+ "action": "upsert",
1009
+ "packageId": "linkedin",
1010
+ "namespace": "posts",
1011
+ "rowId": "7503814538035200021",
1012
+ "value": {
1013
+ "id": "7503814538035200021",
1014
+ "kind": "share",
1015
+ "activityId": "7503814538035200022",
1016
+ "author": "urn:li:person:mOk4f0rPx1",
1017
+ "commentary": "Personal update for my network: I am mentoring two new data engineers this quarter.",
1018
+ "visibility": "CONNECTIONS",
1019
+ "feedDistribution": "MAIN_FEED",
1020
+ "lifecycleState": "PUBLISHED",
1021
+ "isReshareDisabledByAuthor": false,
1022
+ "isEditedByAuthor": false,
1023
+ "article": null,
1024
+ "reshareParent": null,
1025
+ "reshareRoot": null,
1026
+ "commentsState": "OPEN",
1027
+ "createdBy": "mOk4f0rPx1",
1028
+ "createdAtMs": 1789048800000,
1029
+ "lastModifiedAtMs": 1789048800000,
1030
+ "publishedAtMs": 1789048800000,
1031
+ "deletedAtMs": null
1032
+ }
1033
+ },
1034
+ {
1035
+ "action": "upsert",
1036
+ "packageId": "linkedin",
1037
+ "namespace": "posts",
1038
+ "rowId": "7504176925900800023",
1039
+ "value": {
1040
+ "id": "7504176925900800023",
1041
+ "kind": "share",
1042
+ "activityId": "7504176925900800024",
1043
+ "author": "urn:li:person:mOk4f0rPx1",
1044
+ "commentary": "Proud of the team at @[Northwind Analytics](urn:li:organization:81234567) for shipping lineage for every dashboard.",
1045
+ "visibility": "PUBLIC",
1046
+ "feedDistribution": "MAIN_FEED",
1047
+ "lifecycleState": "PUBLISHED",
1048
+ "isReshareDisabledByAuthor": false,
1049
+ "isEditedByAuthor": false,
1050
+ "article": null,
1051
+ "reshareParent": null,
1052
+ "reshareRoot": null,
1053
+ "commentsState": "OPEN",
1054
+ "createdBy": "mOk4f0rPx1",
1055
+ "createdAtMs": 1789135200000,
1056
+ "lastModifiedAtMs": 1789135200000,
1057
+ "publishedAtMs": 1789135200000,
1058
+ "deletedAtMs": null
1059
+ }
1060
+ },
1061
+ {
1062
+ "action": "upsert",
1063
+ "packageId": "linkedin",
1064
+ "namespace": "posts",
1065
+ "rowId": "7504176925900800025",
1066
+ "value": {
1067
+ "id": "7504176925900800025",
1068
+ "kind": "share",
1069
+ "activityId": "7504176925900800026",
1070
+ "author": "urn:li:person:jR3yesVv0q",
1071
+ "commentary": "Only for my connections: we are hiring a field producer.",
1072
+ "visibility": "CONNECTIONS",
1073
+ "feedDistribution": "MAIN_FEED",
1074
+ "lifecycleState": "PUBLISHED",
1075
+ "isReshareDisabledByAuthor": false,
1076
+ "isEditedByAuthor": false,
1077
+ "article": null,
1078
+ "reshareParent": null,
1079
+ "reshareRoot": null,
1080
+ "commentsState": "OPEN",
1081
+ "createdBy": "jR3yesVv0q",
1082
+ "createdAtMs": 1789135200000,
1083
+ "lastModifiedAtMs": 1789135200000,
1084
+ "publishedAtMs": 1789135200000,
1085
+ "deletedAtMs": null
1086
+ }
1087
+ },
1088
+ {
1089
+ "action": "upsert",
1090
+ "packageId": "linkedin",
1091
+ "namespace": "posts",
1092
+ "rowId": "7504539313766400027",
1093
+ "value": {
1094
+ "id": "7504539313766400027",
1095
+ "kind": "share",
1096
+ "activityId": "7504539313766400028",
1097
+ "author": "urn:li:person:mOk4f0rPx1",
1098
+ "commentary": "Lessons from migrating 40 pipelines in one quarter {hashtag|\\#|dataengineering} {hashtag|\\#|platform}",
1099
+ "visibility": "PUBLIC",
1100
+ "feedDistribution": "MAIN_FEED",
1101
+ "lifecycleState": "PUBLISHED",
1102
+ "isReshareDisabledByAuthor": false,
1103
+ "isEditedByAuthor": false,
1104
+ "article": null,
1105
+ "reshareParent": null,
1106
+ "reshareRoot": null,
1107
+ "commentsState": "OPEN",
1108
+ "createdBy": "mOk4f0rPx1",
1109
+ "createdAtMs": 1789221600000,
1110
+ "lastModifiedAtMs": 1789221600000,
1111
+ "publishedAtMs": 1789221600000,
1112
+ "deletedAtMs": null
1113
+ }
1114
+ },
1115
+ {
1116
+ "action": "upsert",
1117
+ "packageId": "linkedin",
1118
+ "namespace": "posts",
1119
+ "rowId": "7504720507699200029",
1120
+ "value": {
1121
+ "id": "7504720507699200029",
1122
+ "kind": "share",
1123
+ "activityId": "7504720507699200030",
1124
+ "author": "urn:li:person:zLuk4s1ew1",
1125
+ "commentary": "Dziękuję wszystkim za wsparcie 🎉",
1126
+ "visibility": "PUBLIC",
1127
+ "feedDistribution": "MAIN_FEED",
1128
+ "lifecycleState": "PUBLISHED",
1129
+ "isReshareDisabledByAuthor": false,
1130
+ "isEditedByAuthor": false,
1131
+ "article": null,
1132
+ "reshareParent": null,
1133
+ "reshareRoot": null,
1134
+ "commentsState": "OPEN",
1135
+ "createdBy": "zLuk4s1ew1",
1136
+ "createdAtMs": 1789264800000,
1137
+ "lastModifiedAtMs": 1789264800000,
1138
+ "publishedAtMs": 1789264800000,
1139
+ "deletedAtMs": null
1140
+ }
1141
+ },
1142
+ {
1143
+ "action": "upsert",
1144
+ "packageId": "linkedin",
1145
+ "namespace": "posts",
1146
+ "rowId": "7504901701632000031",
1147
+ "value": {
1148
+ "id": "7504901701632000031",
1149
+ "kind": "share",
1150
+ "activityId": "7504901701632000032",
1151
+ "author": "urn:li:person:mOk4f0rPx1",
1152
+ "commentary": "How we cut pipeline incidents in half.",
1153
+ "visibility": "PUBLIC",
1154
+ "feedDistribution": "MAIN_FEED",
1155
+ "lifecycleState": "PUBLISHED",
1156
+ "isReshareDisabledByAuthor": false,
1157
+ "isEditedByAuthor": false,
1158
+ "article": {
1159
+ "source": "https://blog.northwind-analytics.example.com/pipeline-incidents",
1160
+ "title": "Halving pipeline incidents",
1161
+ "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."
1162
+ },
1163
+ "reshareParent": null,
1164
+ "reshareRoot": null,
1165
+ "commentsState": "OPEN",
1166
+ "createdBy": "mOk4f0rPx1",
1167
+ "createdAtMs": 1789308000000,
1168
+ "lastModifiedAtMs": 1789308000000,
1169
+ "publishedAtMs": 1789308000000,
1170
+ "deletedAtMs": null
1171
+ }
1172
+ },
1173
+ {
1174
+ "action": "upsert",
1175
+ "packageId": "linkedin",
1176
+ "namespace": "posts",
1177
+ "rowId": "7505082895564800033",
1178
+ "value": {
1179
+ "id": "7505082895564800033",
1180
+ "kind": "share",
1181
+ "activityId": "7505082895564800034",
1182
+ "author": "urn:li:organization:81234567",
1183
+ "commentary": "Meet the analysts behind this year's forecasting report.",
1184
+ "visibility": "PUBLIC",
1185
+ "feedDistribution": "MAIN_FEED",
1186
+ "lifecycleState": "PUBLISHED",
1187
+ "isReshareDisabledByAuthor": false,
1188
+ "isEditedByAuthor": false,
1189
+ "article": null,
1190
+ "reshareParent": null,
1191
+ "reshareRoot": null,
1192
+ "commentsState": "OPEN",
1193
+ "createdBy": "pR4manQ7xz",
1194
+ "createdAtMs": 1789351200000,
1195
+ "lastModifiedAtMs": 1789351200000,
1196
+ "publishedAtMs": 1789351200000,
1197
+ "deletedAtMs": null
1198
+ }
1199
+ },
1200
+ {
1201
+ "action": "upsert",
1202
+ "packageId": "linkedin",
1203
+ "namespace": "posts",
1204
+ "rowId": "7505264089497600035",
1205
+ "value": {
1206
+ "id": "7505264089497600035",
1207
+ "kind": "share",
1208
+ "activityId": "7505264089497600036",
1209
+ "author": "urn:li:person:mOk4f0rPx1",
1210
+ "commentary": "Shipping our new lineage graph today. Thanks to everyone who tested it.",
1211
+ "visibility": "PUBLIC",
1212
+ "feedDistribution": "MAIN_FEED",
1213
+ "lifecycleState": "PUBLISHED",
1214
+ "isReshareDisabledByAuthor": false,
1215
+ "isEditedByAuthor": false,
1216
+ "article": null,
1217
+ "reshareParent": null,
1218
+ "reshareRoot": null,
1219
+ "commentsState": "OPEN",
1220
+ "createdBy": "mOk4f0rPx1",
1221
+ "createdAtMs": 1789394400000,
1222
+ "lastModifiedAtMs": 1789394400000,
1223
+ "publishedAtMs": 1789394400000,
1224
+ "deletedAtMs": null
1225
+ }
1226
+ },
1227
+ {
1228
+ "action": "upsert",
1229
+ "packageId": "linkedin",
1230
+ "namespace": "posts",
1231
+ "rowId": "7505581178880000037",
1232
+ "value": {
1233
+ "id": "7505581178880000037",
1234
+ "kind": "share",
1235
+ "activityId": "7505581178880000038",
1236
+ "author": "urn:li:person:mOk4f0rPx1",
1237
+ "commentary": "Draft: thoughts on on-call rotations for data teams.",
1238
+ "visibility": "PUBLIC",
1239
+ "feedDistribution": "MAIN_FEED",
1240
+ "lifecycleState": "DRAFT",
1241
+ "isReshareDisabledByAuthor": false,
1242
+ "isEditedByAuthor": false,
1243
+ "article": null,
1244
+ "reshareParent": null,
1245
+ "reshareRoot": null,
1246
+ "commentsState": "OPEN",
1247
+ "createdBy": "mOk4f0rPx1",
1248
+ "createdAtMs": 1789470000000,
1249
+ "lastModifiedAtMs": 1789470000000,
1250
+ "publishedAtMs": null,
1251
+ "deletedAtMs": null
1252
+ }
1253
+ },
1254
+ {
1255
+ "action": "upsert",
1256
+ "packageId": "linkedin",
1257
+ "namespace": "activities",
1258
+ "rowId": "7495479617126400002",
1259
+ "value": {
1260
+ "postId": "7495479617126400001"
1261
+ }
1262
+ },
1263
+ {
1264
+ "action": "upsert",
1265
+ "packageId": "linkedin",
1266
+ "namespace": "activities",
1267
+ "rowId": "7496566780723200004",
1268
+ "value": {
1269
+ "postId": "7496566780723200003"
1270
+ }
1271
+ },
1272
+ {
1273
+ "action": "upsert",
1274
+ "packageId": "linkedin",
1275
+ "namespace": "activities",
1276
+ "rowId": "7498378720051200006",
1277
+ "value": {
1278
+ "postId": "7498378720051200005"
1279
+ }
1280
+ },
1281
+ {
1282
+ "action": "upsert",
1283
+ "packageId": "linkedin",
1284
+ "namespace": "activities",
1285
+ "rowId": "7500190659379200008",
1286
+ "value": {
1287
+ "postId": "7500190659379200007"
1288
+ }
1289
+ },
1290
+ {
1291
+ "action": "upsert",
1292
+ "packageId": "linkedin",
1293
+ "namespace": "activities",
1294
+ "rowId": "7501277822976000010",
1295
+ "value": {
1296
+ "postId": "7501277822976000009"
1297
+ }
1298
+ },
1299
+ {
1300
+ "action": "upsert",
1301
+ "packageId": "linkedin",
1302
+ "namespace": "activities",
1303
+ "rowId": "7502002598707200012",
1304
+ "value": {
1305
+ "postId": "7502002598707200011"
1306
+ }
1307
+ },
1308
+ {
1309
+ "action": "upsert",
1310
+ "packageId": "linkedin",
1311
+ "namespace": "activities",
1312
+ "rowId": "7502364986572800014",
1313
+ "value": {
1314
+ "postId": "7502364986572800013"
1315
+ }
1316
+ },
1317
+ {
1318
+ "action": "upsert",
1319
+ "packageId": "linkedin",
1320
+ "namespace": "activities",
1321
+ "rowId": "7502727374438400016",
1322
+ "value": {
1323
+ "postId": "7502727374438400015"
1324
+ }
1325
+ },
1326
+ {
1327
+ "action": "upsert",
1328
+ "packageId": "linkedin",
1329
+ "namespace": "activities",
1330
+ "rowId": "7503089762304000018",
1331
+ "value": {
1332
+ "postId": "7503089762304000017"
1333
+ }
1334
+ },
1335
+ {
1336
+ "action": "upsert",
1337
+ "packageId": "linkedin",
1338
+ "namespace": "activities",
1339
+ "rowId": "7503452150169600020",
1340
+ "value": {
1341
+ "postId": "7503452150169600019"
1342
+ }
1343
+ },
1344
+ {
1345
+ "action": "upsert",
1346
+ "packageId": "linkedin",
1347
+ "namespace": "activities",
1348
+ "rowId": "7503814538035200022",
1349
+ "value": {
1350
+ "postId": "7503814538035200021"
1351
+ }
1352
+ },
1353
+ {
1354
+ "action": "upsert",
1355
+ "packageId": "linkedin",
1356
+ "namespace": "activities",
1357
+ "rowId": "7504176925900800024",
1358
+ "value": {
1359
+ "postId": "7504176925900800023"
1360
+ }
1361
+ },
1362
+ {
1363
+ "action": "upsert",
1364
+ "packageId": "linkedin",
1365
+ "namespace": "activities",
1366
+ "rowId": "7504176925900800026",
1367
+ "value": {
1368
+ "postId": "7504176925900800025"
1369
+ }
1370
+ },
1371
+ {
1372
+ "action": "upsert",
1373
+ "packageId": "linkedin",
1374
+ "namespace": "activities",
1375
+ "rowId": "7504539313766400028",
1376
+ "value": {
1377
+ "postId": "7504539313766400027"
1378
+ }
1379
+ },
1380
+ {
1381
+ "action": "upsert",
1382
+ "packageId": "linkedin",
1383
+ "namespace": "activities",
1384
+ "rowId": "7504720507699200030",
1385
+ "value": {
1386
+ "postId": "7504720507699200029"
1387
+ }
1388
+ },
1389
+ {
1390
+ "action": "upsert",
1391
+ "packageId": "linkedin",
1392
+ "namespace": "activities",
1393
+ "rowId": "7504901701632000032",
1394
+ "value": {
1395
+ "postId": "7504901701632000031"
1396
+ }
1397
+ },
1398
+ {
1399
+ "action": "upsert",
1400
+ "packageId": "linkedin",
1401
+ "namespace": "activities",
1402
+ "rowId": "7505082895564800034",
1403
+ "value": {
1404
+ "postId": "7505082895564800033"
1405
+ }
1406
+ },
1407
+ {
1408
+ "action": "upsert",
1409
+ "packageId": "linkedin",
1410
+ "namespace": "activities",
1411
+ "rowId": "7505264089497600036",
1412
+ "value": {
1413
+ "postId": "7505264089497600035"
1414
+ }
1415
+ },
1416
+ {
1417
+ "action": "upsert",
1418
+ "packageId": "linkedin",
1419
+ "namespace": "activities",
1420
+ "rowId": "7505581178880000038",
1421
+ "value": {
1422
+ "postId": "7505581178880000037"
1423
+ }
1424
+ },
1425
+ {
1426
+ "action": "upsert",
1427
+ "packageId": "linkedin",
1428
+ "namespace": "comments",
1429
+ "rowId": "7504901701632000032|7504937940418560039",
1430
+ "value": {
1431
+ "id": "7504937940418560039",
1432
+ "activityId": "7504901701632000032",
1433
+ "actor": "urn:li:person:sWh1tf1eld",
1434
+ "agent": null,
1435
+ "text": "The ownership section is exactly what we needed.",
1436
+ "attributes": [],
1437
+ "parentCommentId": null,
1438
+ "createdAtMs": 1789316640000,
1439
+ "lastModifiedAtMs": 1789316640000
1440
+ }
1441
+ },
1442
+ {
1443
+ "action": "upsert",
1444
+ "packageId": "linkedin",
1445
+ "namespace": "comments",
1446
+ "rowId": "7504901701632000032|7504974179205120040",
1447
+ "value": {
1448
+ "id": "7504974179205120040",
1449
+ "activityId": "7504901701632000032",
1450
+ "actor": "urn:li:person:pR4manQ7xz",
1451
+ "agent": null,
1452
+ "text": "Can we turn this into a webinar?",
1453
+ "attributes": [],
1454
+ "parentCommentId": null,
1455
+ "createdAtMs": 1789325280000,
1456
+ "lastModifiedAtMs": 1789325280000
1457
+ }
1458
+ },
1459
+ {
1460
+ "action": "upsert",
1461
+ "packageId": "linkedin",
1462
+ "namespace": "comments",
1463
+ "rowId": "7504901701632000032|7505010417991680041",
1464
+ "value": {
1465
+ "id": "7505010417991680041",
1466
+ "activityId": "7504901701632000032",
1467
+ "actor": "urn:li:person:mOk4f0rPx1",
1468
+ "agent": null,
1469
+ "text": "Thanks Sam, happy to compare notes.",
1470
+ "attributes": [],
1471
+ "parentCommentId": "7504937940418560039",
1472
+ "createdAtMs": 1789333920000,
1473
+ "lastModifiedAtMs": 1789333920000
1474
+ }
1475
+ },
1476
+ {
1477
+ "action": "upsert",
1478
+ "packageId": "linkedin",
1479
+ "namespace": "comments",
1480
+ "rowId": "7504901701632000032|7505046656778240042",
1481
+ "value": {
1482
+ "id": "7505046656778240042",
1483
+ "activityId": "7504901701632000032",
1484
+ "actor": "urn:li:organization:81234567",
1485
+ "agent": "mOk4f0rPx1",
1486
+ "text": "Yes! Registration opens next week.",
1487
+ "attributes": [],
1488
+ "parentCommentId": "7504974179205120040",
1489
+ "createdAtMs": 1789342560000,
1490
+ "lastModifiedAtMs": 1789342560000
1491
+ }
1492
+ },
1493
+ {
1494
+ "action": "upsert",
1495
+ "packageId": "linkedin",
1496
+ "namespace": "comments",
1497
+ "rowId": "7504901701632000032|7505082895564800043",
1498
+ "value": {
1499
+ "id": "7505082895564800043",
1500
+ "activityId": "7504901701632000032",
1501
+ "actor": "urn:li:person:zLuk4s1ew1",
1502
+ "agent": null,
1503
+ "text": "Great write-up, Maya Okafor! Sharing with my team.",
1504
+ "attributes": [
1505
+ {
1506
+ "start": 16,
1507
+ "length": 11,
1508
+ "person": "mOk4f0rPx1",
1509
+ "organization": null
1510
+ }
1511
+ ],
1512
+ "parentCommentId": null,
1513
+ "createdAtMs": 1789351200000,
1514
+ "lastModifiedAtMs": 1789351200000
1515
+ }
1516
+ },
1517
+ {
1518
+ "action": "upsert",
1519
+ "packageId": "linkedin",
1520
+ "namespace": "comments",
1521
+ "rowId": "7503089762304000018|7503270956236800044",
1522
+ "value": {
1523
+ "id": "7503270956236800044",
1524
+ "activityId": "7503089762304000018",
1525
+ "actor": "urn:li:person:dMens4hK2p",
1526
+ "agent": null,
1527
+ "text": "The regional breakdown is very useful.",
1528
+ "attributes": [],
1529
+ "parentCommentId": null,
1530
+ "createdAtMs": 1788919200000,
1531
+ "lastModifiedAtMs": 1788919200000
1532
+ }
1533
+ },
1534
+ {
1535
+ "action": "upsert",
1536
+ "packageId": "linkedin",
1537
+ "namespace": "comments",
1538
+ "rowId": "7503089762304000018|7503452150169600045",
1539
+ "value": {
1540
+ "id": "7503452150169600045",
1541
+ "activityId": "7503089762304000018",
1542
+ "actor": "urn:li:person:aT4nak4Rr8",
1543
+ "agent": null,
1544
+ "text": "Would love to see the methodology appendix.",
1545
+ "attributes": [],
1546
+ "parentCommentId": null,
1547
+ "createdAtMs": 1788962400000,
1548
+ "lastModifiedAtMs": 1788962400000
1549
+ }
1550
+ },
1551
+ {
1552
+ "action": "upsert",
1553
+ "packageId": "linkedin",
1554
+ "namespace": "comments",
1555
+ "rowId": "7496566780723200004|7496929168588800046",
1556
+ "value": {
1557
+ "id": "7496929168588800046",
1558
+ "activityId": "7496566780723200004",
1559
+ "actor": "urn:li:person:mOk4f0rPx1",
1560
+ "agent": null,
1561
+ "text": "Congratulations to the whole team!",
1562
+ "attributes": [],
1563
+ "parentCommentId": null,
1564
+ "createdAtMs": 1787407200000,
1565
+ "lastModifiedAtMs": 1787407200000
1566
+ }
1567
+ },
1568
+ {
1569
+ "action": "upsert",
1570
+ "packageId": "linkedin",
1571
+ "namespace": "comments",
1572
+ "rowId": "7496566780723200004|7497110362521600047",
1573
+ "value": {
1574
+ "id": "7497110362521600047",
1575
+ "activityId": "7496566780723200004",
1576
+ "actor": "urn:li:person:nH4dd4dPq2",
1577
+ "agent": null,
1578
+ "text": "It was a long road. Worth it.",
1579
+ "attributes": [],
1580
+ "parentCommentId": null,
1581
+ "createdAtMs": 1787450400000,
1582
+ "lastModifiedAtMs": 1787450400000
1583
+ }
1584
+ },
1585
+ {
1586
+ "action": "upsert",
1587
+ "packageId": "linkedin",
1588
+ "namespace": "comments",
1589
+ "rowId": "7502364986572800014|7502546180505600048",
1590
+ "value": {
1591
+ "id": "7502546180505600048",
1592
+ "activityId": "7502364986572800014",
1593
+ "actor": "urn:li:person:gOduy4Lm3n",
1594
+ "agent": null,
1595
+ "text": "Beautiful facility.",
1596
+ "attributes": [],
1597
+ "parentCommentId": null,
1598
+ "createdAtMs": 1788746400000,
1599
+ "lastModifiedAtMs": 1788746400000
1600
+ }
1601
+ },
1602
+ {
1603
+ "action": "upsert",
1604
+ "packageId": "linkedin",
1605
+ "namespace": "comments",
1606
+ "rowId": "7504720507699200030|7504756746485760049",
1607
+ "value": {
1608
+ "id": "7504756746485760049",
1609
+ "activityId": "7504720507699200030",
1610
+ "actor": "urn:li:person:mOk4f0rPx1",
1611
+ "agent": null,
1612
+ "text": "Well deserved, Zoë!",
1613
+ "attributes": [],
1614
+ "parentCommentId": null,
1615
+ "createdAtMs": 1789273440000,
1616
+ "lastModifiedAtMs": 1789273440000
1617
+ }
1618
+ },
1619
+ {
1620
+ "action": "upsert",
1621
+ "packageId": "linkedin",
1622
+ "namespace": "comments",
1623
+ "rowId": "7504720507699200030|7504829224058880050",
1624
+ "value": {
1625
+ "id": "7504829224058880050",
1626
+ "activityId": "7504720507699200030",
1627
+ "actor": "urn:li:person:ePetr0v4Qs",
1628
+ "agent": null,
1629
+ "text": "Gratulacje!",
1630
+ "attributes": [],
1631
+ "parentCommentId": null,
1632
+ "createdAtMs": 1789290720000,
1633
+ "lastModifiedAtMs": 1789290720000
1634
+ }
1635
+ },
1636
+ {
1637
+ "action": "upsert",
1638
+ "packageId": "linkedin",
1639
+ "namespace": "reactions",
1640
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:sWh1tf1eld",
1641
+ "value": {
1642
+ "entity": "urn:li:activity:7504901701632000032",
1643
+ "actor": "urn:li:person:sWh1tf1eld",
1644
+ "reactionType": "LIKE",
1645
+ "impersonator": null,
1646
+ "createdAtMs": 1789312320000,
1647
+ "lastModifiedAtMs": 1789312320000
1648
+ }
1649
+ },
1650
+ {
1651
+ "action": "upsert",
1652
+ "packageId": "linkedin",
1653
+ "namespace": "reactions",
1654
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:pR4manQ7xz",
1655
+ "value": {
1656
+ "entity": "urn:li:activity:7504901701632000032",
1657
+ "actor": "urn:li:person:pR4manQ7xz",
1658
+ "reactionType": "PRAISE",
1659
+ "impersonator": null,
1660
+ "createdAtMs": 1789320960000,
1661
+ "lastModifiedAtMs": 1789320960000
1662
+ }
1663
+ },
1664
+ {
1665
+ "action": "upsert",
1666
+ "packageId": "linkedin",
1667
+ "namespace": "reactions",
1668
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:lC4rv4lho0",
1669
+ "value": {
1670
+ "entity": "urn:li:activity:7504901701632000032",
1671
+ "actor": "urn:li:person:lC4rv4lho0",
1672
+ "reactionType": "APPRECIATION",
1673
+ "impersonator": null,
1674
+ "createdAtMs": 1789329600000,
1675
+ "lastModifiedAtMs": 1789329600000
1676
+ }
1677
+ },
1678
+ {
1679
+ "action": "upsert",
1680
+ "packageId": "linkedin",
1681
+ "namespace": "reactions",
1682
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:zLuk4s1ew1",
1683
+ "value": {
1684
+ "entity": "urn:li:activity:7504901701632000032",
1685
+ "actor": "urn:li:person:zLuk4s1ew1",
1686
+ "reactionType": "EMPATHY",
1687
+ "impersonator": null,
1688
+ "createdAtMs": 1789346880000,
1689
+ "lastModifiedAtMs": 1789346880000
1690
+ }
1691
+ },
1692
+ {
1693
+ "action": "upsert",
1694
+ "packageId": "linkedin",
1695
+ "namespace": "reactions",
1696
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:dMens4hK2p",
1697
+ "value": {
1698
+ "entity": "urn:li:activity:7504901701632000032",
1699
+ "actor": "urn:li:person:dMens4hK2p",
1700
+ "reactionType": "INTEREST",
1701
+ "impersonator": null,
1702
+ "createdAtMs": 1789355520000,
1703
+ "lastModifiedAtMs": 1789355520000
1704
+ }
1705
+ },
1706
+ {
1707
+ "action": "upsert",
1708
+ "packageId": "linkedin",
1709
+ "namespace": "reactions",
1710
+ "rowId": "urn:li:activity:7504901701632000032|urn:li:person:aT4nak4Rr8",
1711
+ "value": {
1712
+ "entity": "urn:li:activity:7504901701632000032",
1713
+ "actor": "urn:li:person:aT4nak4Rr8",
1714
+ "reactionType": "ENTERTAINMENT",
1715
+ "impersonator": null,
1716
+ "createdAtMs": 1789364160000,
1717
+ "lastModifiedAtMs": 1789364160000
1718
+ }
1719
+ },
1720
+ {
1721
+ "action": "upsert",
1722
+ "packageId": "linkedin",
1723
+ "namespace": "reactions",
1724
+ "rowId": "urn:li:activity:7496566780723200004|urn:li:person:mOk4f0rPx1",
1725
+ "value": {
1726
+ "entity": "urn:li:activity:7496566780723200004",
1727
+ "actor": "urn:li:person:mOk4f0rPx1",
1728
+ "reactionType": "LIKE",
1729
+ "impersonator": null,
1730
+ "createdAtMs": 1787364000000,
1731
+ "lastModifiedAtMs": 1787364000000
1732
+ }
1733
+ },
1734
+ {
1735
+ "action": "upsert",
1736
+ "packageId": "linkedin",
1737
+ "namespace": "reactions",
1738
+ "rowId": "urn:li:activity:7502364986572800014|urn:li:organization:81234567",
1739
+ "value": {
1740
+ "entity": "urn:li:activity:7502364986572800014",
1741
+ "actor": "urn:li:organization:81234567",
1742
+ "reactionType": "PRAISE",
1743
+ "impersonator": "mOk4f0rPx1",
1744
+ "createdAtMs": 1788720480000,
1745
+ "lastModifiedAtMs": 1788720480000
1746
+ }
1747
+ },
1748
+ {
1749
+ "action": "upsert",
1750
+ "packageId": "linkedin",
1751
+ "namespace": "reactions",
1752
+ "rowId": "urn:li:comment:(urn:li:activity:7504901701632000032,7504937940418560039)|urn:li:person:mOk4f0rPx1",
1753
+ "value": {
1754
+ "entity": "urn:li:comment:(urn:li:activity:7504901701632000032,7504937940418560039)",
1755
+ "actor": "urn:li:person:mOk4f0rPx1",
1756
+ "reactionType": "LIKE",
1757
+ "impersonator": null,
1758
+ "createdAtMs": 1789333920000,
1759
+ "lastModifiedAtMs": 1789333920000
1760
+ }
1761
+ },
1762
+ {
1763
+ "action": "upsert",
1764
+ "packageId": "linkedin",
1765
+ "namespace": "reactions",
1766
+ "rowId": "urn:li:comment:(urn:li:activity:7504901701632000032,7505010417991680041)|urn:li:person:sWh1tf1eld",
1767
+ "value": {
1768
+ "entity": "urn:li:comment:(urn:li:activity:7504901701632000032,7505010417991680041)",
1769
+ "actor": "urn:li:person:sWh1tf1eld",
1770
+ "reactionType": "LIKE",
1771
+ "impersonator": null,
1772
+ "createdAtMs": 1789338240000,
1773
+ "lastModifiedAtMs": 1789338240000
1774
+ }
1775
+ },
1776
+ {
1777
+ "action": "upsert",
1778
+ "packageId": "linkedin",
1779
+ "namespace": "reactions",
1780
+ "rowId": "urn:li:activity:7503089762304000018|urn:li:person:gOduy4Lm3n",
1781
+ "value": {
1782
+ "entity": "urn:li:activity:7503089762304000018",
1783
+ "actor": "urn:li:person:gOduy4Lm3n",
1784
+ "reactionType": "INTEREST",
1785
+ "impersonator": null,
1786
+ "createdAtMs": 1788893280000,
1787
+ "lastModifiedAtMs": 1788893280000
1788
+ }
1789
+ },
1790
+ {
1791
+ "action": "upsert",
1792
+ "packageId": "linkedin",
1793
+ "namespace": "reactions",
1794
+ "rowId": "urn:li:activity:7503089762304000018|urn:li:person:nH4dd4dPq2",
1795
+ "value": {
1796
+ "entity": "urn:li:activity:7503089762304000018",
1797
+ "actor": "urn:li:person:nH4dd4dPq2",
1798
+ "reactionType": "LIKE",
1799
+ "impersonator": null,
1800
+ "createdAtMs": 1788901920000,
1801
+ "lastModifiedAtMs": 1788901920000
1802
+ }
1803
+ },
1804
+ {
1805
+ "action": "upsert",
1806
+ "packageId": "linkedin",
1807
+ "namespace": "reactions",
1808
+ "rowId": "urn:li:activity:7504720507699200030|urn:li:person:mOk4f0rPx1",
1809
+ "value": {
1810
+ "entity": "urn:li:activity:7504720507699200030",
1811
+ "actor": "urn:li:person:mOk4f0rPx1",
1812
+ "reactionType": "EMPATHY",
1813
+ "impersonator": null,
1814
+ "createdAtMs": 1789269120000,
1815
+ "lastModifiedAtMs": 1789269120000
1816
+ }
1817
+ },
1818
+ {
1819
+ "action": "upsert",
1820
+ "packageId": "linkedin",
1821
+ "namespace": "reactions",
1822
+ "rowId": "urn:li:activity:7504176925900800026|urn:li:person:jR3yesVv0q",
1823
+ "value": {
1824
+ "entity": "urn:li:activity:7504176925900800026",
1825
+ "actor": "urn:li:person:jR3yesVv0q",
1826
+ "reactionType": "LIKE",
1827
+ "impersonator": null,
1828
+ "createdAtMs": 1789143840000,
1829
+ "lastModifiedAtMs": 1789143840000
1830
+ }
1831
+ }
1832
+ ]
1833
+ }