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