-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-request.json
2415 lines (2415 loc) · 97.2 KB
/
sample-request.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"session": {
"session_id": "vjrgnibvfwvopqaipfcernpbxpcifzck",
"user_id": "8295af804a543671c8f45937f3d5d9df513bb91c2e9d1fa85a10aeb4ca363831",
"user_name_hash": "2527477942798bd6607a6dd5ee82203678ca8b2637edfee1318f243baf87b38c",
"cohort": "XX",
"cohort_index": 1763,
"platform": "facebook",
"url": "https://facebook.com/lyegysvm",
"current_time": "2024-09-02T13:43:35.630637"
},
"survey": null,
"items": [
{
"id": "d3ad80767c86f47a336737e7bc21f3539b48adbd16784aa606ad97e5f7f0119a",
"original_rank": null,
"post_id": "4862911dbdfcba543108c81cd425cfcab85a2fe7f845300d89f892b97c99c078",
"parent_id": "",
"title": null,
"text": "Let this be a warning to KKK sympathizers. Racial discrimination can cost you $$$$",
"author_name_hash": "7b18bafb566a928389d91740845d51e6d6b53ef5d186119e20f5e9e54e0fba25",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T12:33:01",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "8cdf6d165b01089a66fe3d7a88856f1236cb4f07ef126ec20af7ee992b14f91f",
"original_rank": null,
"post_id": "7afe4d649ea9412f47739e1f046462fcf982b5ed139cd83af7188d51eb95e1ae",
"parent_id": "",
"title": null,
"text": "Don't apologize just keep showing ur true nature so idiots will stop following u!",
"author_name_hash": "146adeec2349abc534ee805eebba0b407cea9d5c8f30f0ccd0b4efdb0cf42543",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T08:53:33",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "f08c18201a03e1b4ba45f4751bfee10d7edf3ff6cc2a0fce2d4c5d3c19aef964",
"original_rank": null,
"post_id": "a2b53190ff0f334396308761620b0e4b6a751fb8f07967b05ade4564861fba84",
"parent_id": "",
"title": null,
"text": "Its time our country stood up pharmaceuticals that are raping the country. We are the only country that the cost of drugs is not regulated",
"author_name_hash": "31ea48ba5aedc5e100a84481a55a71af98be3275dac9654742e9dd8c53d92169",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T20:50:49",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "7338037629a890086c7efd9cb6ba022d7fb1aa44c72e15736b94eddfd0b85e6c",
"original_rank": null,
"post_id": "814ebb1c10dadd5b8f5948039d65535864fc61fe46e49abbe39f9506140d959b",
"parent_id": "",
"title": null,
"text": "Planned Parenthood is the bigger abortion PREVENTION out there \r\nNo BIRTHCONTROL \r\nMore abortions\r\nDuh!\r\nRepublicans are dumb",
"author_name_hash": "5fd9ea9fe2d919f67881c35e44f374068894ee38848b76b84f0954be97b56bc3",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-12T18:28:14",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "1307760b901c77d1fb8a5ccdd96efe69a7ac7d153f2be0c28dc7beab4024bc15",
"original_rank": null,
"post_id": "20d1a5909fc1bdec54df7283cacaa6d5f1fa467775bbe7840c38445374bc5c62",
"parent_id": "",
"title": null,
"text": "When IBM was in trouble they brought a CEO from outside with no experience in computers. He had no agenda, and saved the company. After so many years of conflict, with opposing views, it might be wise to bring someone who can think out of the box.",
"author_name_hash": "b0712d23d5f8bcf1a46c800ef4a1d4225d663bdfd63f16509806d69a2d2263f0",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-11T03:05:05",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "34d8b66be248750f5db6a5bfe11bcaa354c90cbaba8bf296ab3c51ac80c06284",
"original_rank": null,
"post_id": null,
"parent_id": "",
"title": null,
"text": "Both companies have a small market share in the grocery industry, but the deal enhances Amazon's dominance of online shopping.",
"author_name_hash": "6e653259feb574243a32a5441eb352e0d630e235f6c216a67be9448a05005e6c",
"type": "post",
"embedded_urls": [],
"created_at": "2017-06-19T18:40:02",
"engagements": {
"like": 6,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "07c7a8bc0fe88d9a66427da8407c9422bfe05fc19cf6dda86126514aecad6d3d",
"original_rank": null,
"post_id": "c5ec7b0837099a13417997575ac5e44f0de0d06c02a7452ca575d75c254eaebd",
"parent_id": "",
"title": null,
"text": "Daniel Bagdasar Michael Bagdasar our buildings getting lit up these past two days",
"author_name_hash": "139426da5bb3caa3bd7f7bbea438a45acdc6fac13fa51c912549c94c87b8966b",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T20:42:56",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "0d8e8bfff67f708df4447d8c13cba19b5591c6a8ad6a73e0cdffd7e6b0aa3dc4",
"original_rank": null,
"post_id": "5cd2c20eeb106ad07a7b0f61cb78e8f9c8beda8e046a4e5aa4ba2fa7b93ba1d2",
"parent_id": "",
"title": null,
"text": "All CONTROL maneuvers. Leering at her up and down. Telling her she is in good shape. (Degrading her to appearance, especially in a formal, business occasion! Objectification is NOT a compliment.) \r\nThen tells her husband she is in good shape (One upping him commenting on his wife!)\r\nHe's lucky he didn't get slapped or punched by both of them. \r\nWhat the f*ck kind of role model is this man?",
"author_name_hash": "23803e9f8044f9f035a8691674830a6edf06f594b82c31a770ccfe4ad4608fff",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T00:29:54",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "3b7db71cda972f6dc6dbc44a3043ca2a7c4f43cf92654f4a61c791c81768d9c7",
"original_rank": null,
"post_id": "a895cccf114e0d6b37e6ef116e5984059d5adc6f60325a25facba5a98190e761",
"parent_id": "",
"title": null,
"text": "Hey Neil, get Charlotte nc added to the sanctuary list. Construction out the butt, all dark skinned working! I'm sure a black or white American would love to have one of those jobs",
"author_name_hash": "dbba29a0c147d4587b1288a0456d195bdc09980934dd62eb394a010b5290e741",
"type": "comment",
"embedded_urls": [],
"created_at": "2016-11-21T00:19:22",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "97918b6b3a6a9d08e6e9307e0e4b22d498851239513826946b7462f08454dd09",
"original_rank": null,
"post_id": null,
"parent_id": "",
"title": null,
"text": "Numerous senators say it looks like the more than $700 billion worth of cuts to Medicaid will still be in the bill.",
"author_name_hash": "f277c9108e8b42355aa6d1f5d0843f93ea03daebbc19c765fdfe12de0cefe672",
"type": "post",
"embedded_urls": [],
"created_at": "2017-07-12T21:29:01",
"engagements": {
"like": 73,
"love": 0,
"care": 0,
"haha": 9,
"wow": 20,
"sad": 58,
"angry": 605,
"comment": 15,
"share": 174
},
"language": null
},
{
"id": "f384edf771ce9a665b319e476abb3c806f913f789818386ef05a9ec93c161533",
"original_rank": null,
"post_id": "a4b1454327c1f812a1152b19cfe947939f6fc64dda1237873bbd6bdc2acc0f16",
"parent_id": "",
"title": null,
"text": "I wanna see Aliens also NASA 🤣",
"author_name_hash": "3e9c58af687a22381da0563539a7300809dea891b8582815a6f0c701b17f80e9",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T07:31:09",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "b4d976c02f940dd78c6159d402e530b64bcd67572d6900796b54778344f51f11",
"original_rank": null,
"post_id": "97711ac8704d6836e2c7cc35db5ec468cd1d70a1d4ab63699cffe2840af32997",
"parent_id": "",
"title": null,
"text": "Land O' Sinkholes FL",
"author_name_hash": "13e56fc7e373322d4d589d56fb1263b993ca8488e43db23347133ab3543d44d5",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T15:02:42",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "56f8bc88779878709127bf6b8c36518165acd85e3ab52c8f291d7dbb5fb267f4",
"original_rank": null,
"post_id": "1b9b349f8b9ebd1343e4efe4fbedfb774ab28508e19b1059bf2d4f4494412b39",
"parent_id": "",
"title": null,
"text": "These protestors believe they are doing something important right now? The people in power look at them as entertainment.",
"author_name_hash": "5490486c61763b764c3d975f371a5227322cb43fc6ee9d02d00417a3c3a3d565",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-07T20:42:15",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "4e1d3863035a41a141001b26092cba7bca0a92a3cab7b299b9d699c448a53929",
"original_rank": null,
"post_id": "b2c189e77b5c36555c7aa37ba10041d88e8f27d3c4d021dd8fbbbdcc02d22f36",
"parent_id": "",
"title": null,
"text": "Misspelled Racial Madcow.",
"author_name_hash": "d976374a2013b560f44870830e09db13bbf19fd94e9f96ecba13b39c68e7c9f0",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T14:52:26",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "e87de5a35993c7f886f757421559da8b149a2df7061649b2855ca470e3f76890",
"original_rank": null,
"post_id": "c1f7f3df842d4915c148f19dbce87bcedf30888de9460e5da917e47c42b06035",
"parent_id": "",
"title": null,
"text": "Maybe this is her specialty. This should be her area.",
"author_name_hash": "42c488a9959f85cc6aabe055e4b1377b9ceadc94e3031e9ed9c0d88c5134ce31",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T17:21:05",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "1fede79adedcc894c98ec21d78f66176c10ef1c1572753c9f61bd3290eb049f5",
"original_rank": null,
"post_id": "ecd940e256e131d88715132effca799a321ece70d28500c18a48ff1194fb2d60",
"parent_id": "",
"title": null,
"text": "I just love Ted Lieu...He's always on it...",
"author_name_hash": "c1ad1f6bfb7bc91929db02eb0eb9ce04c58a503d469b7477c6775af45cc76154",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-12T23:10:36",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "9c7ef8c66d6b58588a41061b9328758eef6cbcc63d837e8bbbd8db8fc408e9d3",
"original_rank": null,
"post_id": "64c6d6fe77ffb410592d7e2b1c1922bfee3ccd63ce4a51ac31df69ea3541d06c",
"parent_id": "",
"title": null,
"text": "",
"author_name_hash": "4cba6f6e60e4ccda59549ed00c36c6361e9b5b28fa2d3c48a23ee5e7c6bbb792",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T21:13:38",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "2f6dffad9529cff1d0a6633df762d84af884daa57fbb245de24b3d44259104b0",
"original_rank": null,
"post_id": "c376cba6ae4deb197c3b72c1f3d5d46ae9eb62546ca7e09a8e2e1898c2841a63",
"parent_id": "",
"title": null,
"text": "I really liked your article. I was hoping that people realized the stigma that hits you when you retire. Perfect example is my situation. I was always lively and full of stories at get togethers with family and friends. After 43 years I suddenly did not have anything to say and everyone was worried that I was ill.People need people and especially human contact to survive and thrive.",
"author_name_hash": "d9bef555afcbcd7f614be2ba5f024eb0c5816d029dd82336654c58c8b828522a",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T00:18:19",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "cea7f4036e0f4b070b37258a2542fc2cfc0da23834768047dcd73dfd56343504",
"original_rank": null,
"post_id": "2a37a013be9a646a74a4998559eabd3fde244d9e7783cb54ae150bd4fe4793fa",
"parent_id": "",
"title": null,
"text": "We are extending an invitation to any true progressive out there who is sick and tired of the corporate status quo which has never served the average citizen. Our group: The Progressive Party (links provided below) welcomes both liberals and conservatives alike. Fuck the democrats and republicans. It's time to get passed the smokescreen issues that the social elite have used to separate us, and to unite under the common interests we share. We won't agree 100% of the time, but on the issues that matter most, we are unified. It is time to make a concerted effort to get money out of politics so that real people, average middle class persons, are actually represented in government. That is something we can all agree on.\r\n\r\nJoin us: \r\nhttps://www.facebook.com/groups/1090343157696415/\r\n\r\nAnd like our page: \r\nhttps://m.facebook.com/theprogressiveparty/\r\n\r\nThe revolution will continue. \r\n\r\n#NoMoreCorporateWhores\r\n#WeThePeople\r\n#Progressives",
"author_name_hash": "cb0b17976af6849892bb3f5dc6759c7a3c4b99d68eeb3e957b0671ac7c33684f",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-06-28T22:04:18",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "f95eac0f86f2490f7b98d710a1f856b8cc17506d4eb743e92ada0062dd7b1845",
"original_rank": null,
"post_id": "a1e6b95ead43a526440bba5b6c340ce5125bc84e6fdf30ee993f64cefdd832c3",
"parent_id": "",
"title": null,
"text": "Go Trump",
"author_name_hash": "0a884419b530ad6ab1eaefc866279cd0503b9bf93665eef02cdd3bb6931bbf7e",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T11:29:21",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "0a8d4f0a9a031cf01143897e551e9512d61cd93da36bdba2fab32f52e84ce055",
"original_rank": null,
"post_id": "4815cb35a529da70818f5e84543aec26c932c7ee64d71f967b56c7932a0b8236",
"parent_id": "",
"title": null,
"text": "Keep up the pressure and make him crack.",
"author_name_hash": "fa0f02f538e068045fe6c3281c601a87cd4fb97238f92465bbfbe661332a1938",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-01-24T21:38:31",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "7d5971bce8603cb0428394daabee33eeae2ca2a90e3d38fa4495bb54a19d603b",
"original_rank": null,
"post_id": "ea698bb8abf700d59fa280724d10e73f741a3480026e08a110f8ae3f7a497aed",
"parent_id": "",
"title": null,
"text": "FINALLY",
"author_name_hash": "28f3315bc381f130beb7874d9dd7766146ca8ddd587fc77abc1fd18a67703a42",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-11T18:46:37",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "6626ca496eefbb8fc039ab408b7557151477ec62800968cd2d888f6381563a38",
"original_rank": null,
"post_id": "59f1531b0becb6869072e91dbcee33678ce101679da72829022d27e8e2e46236",
"parent_id": "",
"title": null,
"text": "Gabriel Kierulff",
"author_name_hash": "4d9e1e5aef180af9c8afe3dad8f21d47cec935a3179286ba760fe8e27251c412",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T21:16:05",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "5a54732b0a81912f89f2d864a40ab117dfcdd05fb262d8f362ab7be6566b1639",
"original_rank": null,
"post_id": "471fa1474ee98368a2839da471d9fb64de70255592a80233a19c270fc70c523a",
"parent_id": "",
"title": null,
"text": "#DraftBernie for a Real People's Party!",
"author_name_hash": "5467f671f0fad6a4e849c4aeb3a71317f22cb90b0c427c5293db4d739a812f07",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-11T18:10:08",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "9c2d95dbe4aac48989f64d05df1dfa362d87aa6ed65cea688712c92b1a8d2d06",
"original_rank": null,
"post_id": null,
"parent_id": "",
"title": null,
"text": "For how long did we try to tell them? It fell upon deaf ears.",
"author_name_hash": "df669048c293188a1683a3036959702ce0ad7e58c77f5a3ede24f79ca9ab3740",
"type": "post",
"embedded_urls": [],
"created_at": "2017-06-28T20:32:23",
"engagements": {
"like": 11164,
"love": 101,
"care": 0,
"haha": 4469,
"wow": 369,
"sad": 94,
"angry": 1338,
"comment": 11,
"share": 4472
},
"language": null
},
{
"id": "508b4198bb947f9680c4e3474c83a3bce283c666ac9ff5a9435f72841092b86b",
"original_rank": null,
"post_id": null,
"parent_id": "",
"title": null,
"text": "At long last face to face, President Donald Trump and Russian President Vladimir Putin voiced confidence Friday that their historic first meeting would pave the way for a positive trajectory for their two countries.",
"author_name_hash": "18ac7d28146873722aec3b939b2feef8d4cb749a7bbe020b449fe0e509fa52f1",
"type": "post",
"embedded_urls": [],
"created_at": "2017-07-07T17:30:00",
"engagements": {
"like": 301,
"love": 13,
"care": 0,
"haha": 6,
"wow": 2,
"sad": 0,
"angry": 2,
"comment": 2,
"share": 19
},
"language": null
},
{
"id": "01f5253ebe72dc7e0dca6e51d9fb07ff14e56cfc168bf6fbb65ffafe63d4f956",
"original_rank": null,
"post_id": "4f283cf9705ee18f8d1403f6cabe92eaabd6c1b3a7678320ceef76d9d2c42ecb",
"parent_id": "",
"title": null,
"text": "Every time they are arrested for attacking people who were doing nothing to them, double their jail time. Eventually, they'll give themselves a life sentence.",
"author_name_hash": "34e4b686093eb179c0f09f1dfc443a75210f30f2f0f40b3479b97e26e8bbbb81",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-07T20:26:44",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "1d6cd87ec78a36a825d338d26911b5c8a676fbb60f88e28d1eb30abae07ee31c",
"original_rank": null,
"post_id": "4dc98df3b13e3c03cbe06ce13856159e5be0bcf54600ca2b200bfa08bfe66fe2",
"parent_id": "",
"title": null,
"text": "WOW, and Dershowitz has been quoted as saying number of times that the dnc is on a witch hunt concerning Trump.\r\nhttp://www.washingtonexaminer.com/alan-dershowitz-i-dont-see-any-crime-that-donald-trump-jr-committed/article/2628434",
"author_name_hash": "ad97ea43a7b87d728298531cc8e80a2cf54e8f8709c2d50864465c37289ab281",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T04:01:30",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "8bc7ec25765081b529361f372d6daeb3d16f24dff17d6934edf26799ee03356b",
"original_rank": null,
"post_id": "985a20145cfbc65b3feadb9b85443533f58357fdc5e9ff988a085e9178a64cd3",
"parent_id": "",
"title": null,
"text": "",
"author_name_hash": "d25c0b1e40a110ca01e3b90958a1415a7e78e996eb3c91a09fa8931177347800",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T19:13:55",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "f7428eb86c41ec6869a950fb4384f0aa01fc3bf34132694031b665bd3cfac6f4",
"original_rank": null,
"post_id": "23f88d4e40c57d9eb133835e4d81f25b0d2695bbe0f459d69419a9244673538d",
"parent_id": "",
"title": null,
"text": "Looks to me like Kermit failed a drug test...",
"author_name_hash": "4fb4a46f2de67b27bc47356e3da65f608a94a29a7bbbdc2c533865fd468a19e1",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T12:22:44",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "b368308831ff3e140b83222aa0f9ab8d67d8a452b41b39bc96cbe849148f4e28",
"original_rank": null,
"post_id": "a3c166b4c2e62a49addabe0d57617f7efe98ce6577d544b44df26673d7063294",
"parent_id": "",
"title": null,
"text": "I can't respect a grown man named Tucker.",
"author_name_hash": "f3909bcf019abfb6d732c8093d67d9fc507befaf2713df7e5e685c28deea4190",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-13T16:37:58",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "49039894fd3b201047fb0930e0bba10921575384143e8e91b267d9d0959b61b1",
"original_rank": null,
"post_id": "f975f498610eddbfc4348abb9d62f26d7521d9ac5ca829aef573a11d9e2d1429",
"parent_id": "",
"title": null,
"text": "He talks about mis leading😈 people? WTF ? Why does he think they nearly lost the election? That was Cameron and Clegg lied! Then the lied about Health and Safety and all their policies !",
"author_name_hash": "d2c50af169d45a61c15e82e377394c497d80206c0879a9cbf422bf61f0c066f4",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-12T11:34:55",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "d4c356882610056eabe8ed89963c2f76e746e92954167855f6d30d403f90fc17",
"original_rank": null,
"post_id": "3f9052521508a150a063b3910da3b9bf424ca4c67e276939c29adbdbc072d441",
"parent_id": "",
"title": null,
"text": "Donald Trump's administration just violated 3 Federal Laws:\r\n\r\nhttps://medium.com/p/white-house-threats-to-joe-scarborough-b04a5dfbe715",
"author_name_hash": "a9925ef40ae7b2fd52955573975b0c38fc41bc58ca606b17365679dc6e7c1b7f",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-06-30T23:45:04",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "14ab38e5b680c9deb8bd3bb3e2d8641660f2fa408350233141e5ad3d7c6c1435",
"original_rank": null,
"post_id": "54e9bf91fd27cb8c837e6c717e169872a665bbb739cd0d7bc2c86f244e82a6a6",
"parent_id": "",
"title": null,
"text": "So what's going to be done about it ? I'm tired of our government finding proof that these corrupt bastards have violated their oaths and are getting away with it. Do something, make them pay the price just as you would if it were a private citizen or others.",
"author_name_hash": "c51bbfa08b67ed0b03de5da1a61b53e9a73024de5587ee6f96a583a76752c803",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-10T15:43:27",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "d5721ed50b9b1702c67046d4c928e9a492488d26a61745af9516ad42081d7609",
"original_rank": null,
"post_id": "007bbeab09090449bebc4532e2e2772b6c0d228275c7741d24d832873be487e2",
"parent_id": "",
"title": null,
"text": "remember this in 2018, people, or whenever your senator is up",
"author_name_hash": "29f9760095dddc0ce75c1fde9cf2b1c26ae3dc56b4bf894be7885e49a251e72c",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T08:57:12",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "b299ab1bd716bc4e91ceb6dd200e65c9fad3c450321c293aa4df9eb439f827ec",
"original_rank": null,
"post_id": "8df824f32d264c1e7369cd5f8a0e3f072ce41c3b176bc9f34d5e93ff9d95547f",
"parent_id": "",
"title": null,
"text": "No! Not true! Why would anyone meet with a foreign government representative to help his candidate win an election in the US?",
"author_name_hash": "5486f9e60e5c7b23f0bbd74ea28f6c0968d8c5ffe6c742cddfb0e651b2773412",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-14T00:25:31",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "229f5ff04bc774cd18577494a929180e9e69861793803880e3beb6c51b3e7c55",
"original_rank": null,
"post_id": null,
"parent_id": "",
"title": null,
"text": "Did Donald Trump Jr. commit a crime when he and other Trump insiders met with a Russian lawyer whom they believed could share damaging information about Hillary Clinton? Trump says nothing came of it -- but the questions don't end there.",
"author_name_hash": "61c7ae7ff98cebd1284602680ecfd04e66099b729c5af42e314b095267141fcb",
"type": "post",
"embedded_urls": [],
"created_at": "2017-07-12T15:09:32",
"engagements": {
"like": 386,
"love": 26,
"care": 0,
"haha": 13,
"wow": 15,
"sad": 5,
"angry": 89,
"comment": 9,
"share": 70
},
"language": null
},
{
"id": "7c5129dd32d68be2ff19086fce9b0a08ea3c03b3f79e663b2952f3aa650d5bb5",
"original_rank": null,
"post_id": "23c37ae0f30a7ac86f938f0c718f0a7bcd8f3bd57d35b926aae07fe0b685f7ea",
"parent_id": "",
"title": null,
"text": "What about my mortgage or auto loan. I work for a living, those snowflakes haven't done anything. Still on mommy and.daddy's insurance. Get a job free loaders.",
"author_name_hash": "11d8b31607ce80fc38eaca191194635e35e5064a8bcc5aa1485ec9e6c1bbfd2e",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-10T22:29:34",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "c216025b57b7e1f9b36b944bcdab46b280da736b609128eef90b7128dd948aa9",
"original_rank": null,
"post_id": "71f92ba6eed4426fa5d0aea675545c2e945b095df72d191672ec3d4fe8e3f023",
"parent_id": "",
"title": null,
"text": "If you have an idea of any impenetrable cyber defence system why would you discuss it with or be in partnership with your biggest opponent",
"author_name_hash": "d74ce9aa251c1b1f384a4a64d9998849c254a2533e6c56c921df4461105e8841",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-10T12:52:49",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "b996fb4e6e77b20d4a037a25151a8fd9dd1c791397b1fb8805fafbac08e5be83",
"original_rank": null,
"post_id": "dc0de99afe107d8aac1d91d5c5586e4a6116c9562ad465dfda4d754521974f14",
"parent_id": "",
"title": null,
"text": "IT IS CALLED THE RUSSIAN ROPE-A-DOPE DEFENSE.",
"author_name_hash": "b949a5c6ae3c0f70c2bc42510f7c8cde1e04115b58d069f8cd76e2638b587994",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-06-21T02:31:36",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "d71111917294229420521b2ddd9eb6678480d7257f58e21ac23137aed7559e91",
"original_rank": null,
"post_id": "2ccf230716cb776e643cb36802c349f9b14718846ec39be4605daf1b27a20248",
"parent_id": "",
"title": null,
"text": "Why didn't KS accept Medicaid Expansion? That would have increased job creation and definitely helped Rural Hospitals.",
"author_name_hash": "825407e707753034c758e7921aee75eb9ad15b6c69f32bbd7b80417437ff5af7",
"type": "comment",
"embedded_urls": [],
"created_at": "2017-07-08T03:51:05",
"engagements": {
"like": 0,
"love": 0,
"care": 0,
"haha": 0,
"wow": 0,
"sad": 0,
"angry": 0,
"comment": 0,
"share": 0
},
"language": null
},
{
"id": "0f6f37b03f9bc567590d9db6c0b51dd12a81b27a6ad92d9993f85a051aa3a27e",
"original_rank": null,