-
Notifications
You must be signed in to change notification settings - Fork 3
/
data.json
5727 lines (5727 loc) · 235 KB
/
data.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
{
"title": {
"media": {
"url": "/img/pbs-newshour.png",
"caption": "",
"credit": ""
},
"text": {
"headline": "The giant timeline of everything Russia, Trump and the investigations",
"text": "By Lisa Desjardins"
}
},
"events": [
{
"media": {
"url": "https://www.state.gov/state-responsive/images/favicons/apple-touch-icon-57x57.png",
"caption": "",
"credit": "US Department of State"
},
"start_date": {
"month": "3",
"day": "6",
"year": "2014"
},
"text": {
"headline": "U.S. authorizes sanctions on Russia.",
"text": "<a href='https://www.state.gov/e/eb/tfs/spi/ukrainerussia/' target='_blank'>US Department of State / Ukraine and Russia Sanctions</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://img.thedailybeast.com/image/upload/c_crop,d_placeholder_euli9k,h_1439,w_2560,x_0,y_0/dpr_2.0/c_limit,w_740/fl_lossy,q_auto/v1492182088/articles/2015/04/08/obama-to-putin-stop-hacking-me/150408-harris-cyberattacks-tease_uqe1tb",
"caption": "",
"credit": "The Daily Beast"
},
"start_date": {
"month": "4",
"day": "8",
"year": "2015"
},
"text": {
"headline": "Rise in Russian cyberattacks.",
"text": "<a href='https://www.thedailybeast.com/obama-to-putin-stop-hacking-me' target='_blank'>The Daily Beast / Obama to Putin: Stop Hacking Me</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://i.ytimg.com/vi/apjNfkysjbM/maxresdefault.jpg",
"caption": "",
"credit": "You Tube"
},
"start_date": {
"month": "6",
"day": "16",
"year": "2015"
},
"text": {
"headline": "Trump announces candidacy for president.",
"text": "<a href='https://www.youtube.com/watch?v=apjNfkysjbM' target='_blank'>You Tube / Donald Trump Presidential Campaign Announcement Full Speech (C-SPAN)</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/07/29/Others/Images/2015-07-28/___hrc_201438129810.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "8",
"day": "4",
"year": "2015"
},
"text": {
"headline": "FBI begins Clinton email investigation.",
"text": "<a href='https://www.washingtonpost.com/politics/fbi-looks-into-security-of-clintons-private-e-mail-setup/2015/08/04/2bdd85ec-3aae-11e5-8e98-115a3cf7d7ae_story.html?utm_term=.644366284bd2' target='_blank'>Washington Post / FBI looking into the security of Hillary Clinton’s private e-mail setup</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://media.npr.org/assets/img/2016/05/26/gettyimages-534301606_wide-efbc2b7488ad53382ce658ce3d7fb9269f3f9a41.jpg?s=1400",
"caption": "",
"credit": "NPR"
},
"start_date": {
"month": "5",
"day": "26",
"year": "2016"
},
"text": {
"headline": "Trump clinches the GOP nomination for president.",
"text": "<a href='http://www.npr.org/2016/05/26/479588197/donald-trump-clinches-gop-nomination' target='_blank'>NPR / Donald Trump Clinches GOP Nomination</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2016/06/14/National-Security/Images/2016-06-13T194832Z_01_BKS02_RTRIDSP_3_USA-ELECTION-TRUMP.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "6",
"day": "14",
"year": "2016"
},
"text": {
"headline": "DNC announces it was hacked.",
"text": "<a href='https://www.washingtonpost.com/world/national-security/russian-government-hackers-penetrated-dnc-stole-opposition-research-on-trump/2016/06/14/cf006cb4-316e-11e6-8ff7-7b6c1998b7a0_story.html?' target='_blank'>Washington Post / Russian government hackers penetrated DNC, stole opposition research on Trump</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.fbi.gov/@@site-logo/fbisealitunes-small.jpg",
"caption": "",
"credit": "Federal Bureau of Investigation"
},
"start_date": {
"month": "7",
"day": "5",
"year": "2016"
},
"text": {
"headline": "Comey closes Clinton email investigation.",
"text": "<a href='https://www.fbi.gov/news/pressrel/press-releases/statement-by-fbi-director-james-b-comey-on-the-investigation-of-secretary-hillary-clinton2019s-use-of-a-personal-e-mail-system' target='_blank'>Federal Bureau of Investigation / Statement by FBI Director James B. Comey on the Investigation of Secretary Hillary Clinton’s Use of a Personal E-Mail System</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2016/07/18/Editorial-Opinion/Images/AP_Poll_Campaign_2016-Issues-3012f-1209.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "7",
"day": "11",
"year": "2016"
},
"text": {
"headline": "Trump campaign helps change GOP platform on Ukraine/Russia.",
"text": "<a href='https://www.washingtonpost.com/opinions/global-opinions/trump-campaign-guts-gops-anti-russia-stance-on-ukraine/2016/07/18/98adb3b0-4cf3-11e6-a7d8-13d06b37f256_story.html?utm_term=.c05a2d51a711' target='_blank'>Washington Post / Trump campaign guts GOP’s anti-Russia stance on Ukraine</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://media4.s-nbcnews.com/j/newscms/2016_28/1622586/1601715-tump-pence-mdl_b4b2e40ac8319d76325485ffde717640.1200;630;7;70;5.JPG",
"caption": "",
"credit": "NBC News"
},
"start_date": {
"month": "7",
"day": "15",
"year": "2016"
},
"text": {
"headline": "Trump chooses Pence as VP.",
"text": "<a href='http://www.nbcnews.com/storyline/2016-conventions/its-official-trump-announces-mike-pence-vp-pick-n610111' target='_blank'>NBC News / It's Official: Trump Announces Mike Pence as VP Pick</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://static01.nyt.com/images/2016/07/23/us/23emails_web1/23emails_web1-facebookJumbo.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "7",
"day": "22",
"year": "2016"
},
"text": {
"headline": "Wikileaks releases 20,000 DNC emails.",
"text": "<a href='https://www.nytimes.com/2016/07/23/us/politics/dnc-emails-sanders-clinton.html' target='_blank'>New York Times / Released Emails Suggest the D.N.C. Derided the Sanders Campaign</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2016/07/24/National-Politics/Images/300625386_0-4.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "7",
"day": "24",
"year": "2016"
},
"text": {
"headline": "DNC chairwoman Debbie Wasserman Schultz resigns.",
"text": "<a href='https://www.washingtonpost.com/politics/hacked-emails-cast-doubt-on-hopes-for-party-unity-at-democratic-convention/2016/07/24/a446c260-51a9-11e6-b7de-dfe509430c39_story.html?utm_term=.23afcd3d0254' target='_blank'>Washington Post / DNC chairwoman will resign in aftermath of committee email controversy</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "http://www.foxnews.com/content/dam/fox-news/logo/og-fn-foxnews.jpg",
"caption": "",
"credit": "Fox News"
},
"start_date": {
"month": "7",
"day": "25",
"year": "2016"
},
"text": {
"headline": "FBI begins investigation of DNC hack.",
"text": "<a href='http://www.foxnews.com/politics/2016/07/25/fbi-to-investigate-dnc-email-hack.html' target='_blank'>Fox News / FBI to investigate DNC email hack</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://static01.nyt.com/images/2016/08/20/us/21manafort/21manafort-facebookJumbo.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "8",
"day": "19",
"year": "2016"
},
"text": {
"headline": "Manafort leaves Trump's campaign.",
"text": "<a href='https://www.nytimes.com/2016/08/20/us/politics/paul-manafort-resigns-donald-trump.html' target='_blank'>New York Times / Paul Manafort Quits Donald Trump’s Campaign After a Tumultuous Run</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "http://v.politico.com/images/1155968404/201612/227/1155968404_5251237797001_5251230505001-vs.jpg?pubId=1155968404",
"caption": "",
"credit": "Politico"
},
"start_date": {
"month": "9",
"day": "5",
"year": "2016"
},
"text": {
"headline": "President Obama tells Putin to stop hacking.",
"text": "<a href='http://www.politico.com/story/2016/12/obama-putin-232754' target='_blank'>Politico / Obama says he told Putin to ‘cut it out’ on Russia hacking</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2016/10/07/National-Politics/Images/trumpaccesshollywood.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "10",
"day": "7",
"year": "2016"
},
"text": {
"headline": "Access Hollywood tape revealed.",
"text": "<a href='https://www.washingtonpost.com/politics/trump-recorded-having-extremely-lewd-conversation-about-women-in-2005/2016/10/07/3b9ce776-8cb4-11e6-bf8a-3d26847eeed4_story.html?postshare=2491475870527101&tid=ss_tw&utm_term=.5e19edddc5fa' target='_blank'>Washington Post / Trump recorded having extremely lewd conversation about women in 2005</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2016/10/10/National-Politics/Images/613699030.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "10",
"day": "9",
"year": "2016"
},
"text": {
"headline": "Second presidential debate brings up hacking.",
"text": "<a href='https://www.washingtonpost.com/news/the-fix/wp/2016/10/09/everything-that-was-said-at-the-second-donald-trump-vs-hillary-clinton-debate-highlighted/?utm_term=.ec85042cd242' target='_blank'>Washington Post / Everything that was said at the second Donald Trump vs. Hillary Clinton debate, highlighted</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://o.aolcdn.com/images/dims3/GLOB/legacy_thumbnail/1028x675/format/jpg/quality/85/http%3A%2F%2Fo.aolcdn.com%2Fhss%2Fstorage%2Fmidas%2Fd7a9f67309d252744f863d7409571b41%2F204715725%2FRTX2VEC2.jpeg",
"caption": "",
"credit": "America Online"
},
"start_date": {
"month": "10",
"day": "31",
"year": "2016"
},
"text": {
"headline": "White House red phones another warning to Russia.",
"text": "<a href='https://www.aol.com/article/news/2016/12/19/what-obama-said-to-putin-on-the-red-phone-about-the-election-hac/21631316/' target='_blank'>America Online / What Obama said to Putin on the red phone about the election hack</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/170509181301-james-comey-fired-letter-trump-super-tease.png",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "5",
"day": "9",
"year": "2017"
},
"text": {
"headline": "Trump fires Comey.",
"text": "<a href='http://www.cnn.com/2017/05/09/politics/fbi-james-comey-fired-letter/' target='_blank'>CNN / Trump's letter firing FBI Director James Comey</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://cdn.theatlantic.com/assets/media/img/mt/2017/06/RTX38J4C/facebook.jpg?1522775142",
"caption": "",
"credit": "The Atlantic"
},
"start_date": {
"month": "6",
"day": "1",
"year": "2017"
},
"text": {
"headline": "Putin denies role in U.S. elections.",
"text": "<a href='https://www.theatlantic.com/news/archive/2017/06/putin-russia-us-election/528825/' target='_blank'>The Atlantic / Putin Says 'Patriotic Hackers' May Have Targeted U.S. Election</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://static01.nyt.com/images/2017/07/08/us/08TRUMP1/08TRUMP1-facebookJumbo.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "7",
"day": "8",
"year": "2017"
},
"text": {
"headline": "NYT first reports Donald Trump Jr. 2016 meeting with Russian lawyer.",
"text": "<a href='https://www.nytimes.com/2017/07/08/us/politics/trump-russia-kushner-manafort.html' target='_blank'>New York Times / Trump Team Met With Lawyer Linked to Kremlin During Campaign</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://static01.nyt.com/images/2017/07/11/us/politics/don-trump-jr-email-promo/don-trump-jr-email-promo-facebookJumbo-v2.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "7",
"day": "11",
"year": "2017"
},
"text": {
"headline": "Donald Trump Jr. releases emails about meeting with Russian lawyer after offer of anti-Hillary Clinton material.",
"text": "<a href='https://www.nytimes.com/interactive/2017/07/11/us/politics/donald-trump-jr-email-text.html?_r=0' target='_blank'>New York Times / Read the Emails on Donald Trump Jr.’s Russia Meeting</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/170714131823-the-kremlin-at-the-red-square-super-tease.jpg",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "7",
"day": "27",
"year": "2017"
},
"text": {
"headline": "U.S. Senate sends new Russia sanctions to Trump's desk.",
"text": "<a href='http://www.cnn.com/2017/07/27/politics/russian-sanctions-passes-senate/index.html' target='_blank'>CNN / Senate sends Russia sanctions to Trump's desk</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://media.npr.org/assets/img/2017/07/30/gettyimages-615648550_wide-cd47798a7f50261b467194074bde999fba1d9055.jpg?s=1400",
"caption": "",
"credit": "NPR"
},
"start_date": {
"month": "7",
"day": "28",
"year": "2017"
},
"text": {
"headline": "Russia reacts to sanctions bill, expelling U.S. diplomats. ",
"text": "<a href='http://www.npr.org/2017/07/30/540432397/putin-expels-755-u-s-diplomats-from-russia-in-response-to-new-sanctions-bill' target='_blank'>NPR / Putin To Expel 755 U.S. Diplomats And Staff From Russia In Response To New Sanctions</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://s4.reutersmedia.net/resources/r/?m=02&d=20170802&t=2&i=1195515637&w=1200&r=LYNXMPED711HS",
"caption": "",
"credit": "Reuters"
},
"start_date": {
"month": "8",
"day": "2",
"year": "2017"
},
"text": {
"headline": "Trump signs new sanctions against Russia, but says bill is "flawed."",
"text": "<a href='https://www.reuters.com/article/us-usa-trump-russia-idUSKBN1AI1Y4' target='_blank'>Reuters / Trump signs Russia sanctions bill, Moscow calls it 'trade war'</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://i.guim.co.uk/img/media/a011ff8df8beae7838c6f4439059a5cac58e3f71/0_60_4668_2801/master/4668.jpg?w=1200&h=630&q=55&auto=format&usm=12&fit=crop&crop=faces%2Centropy&bm=normal&ba=bottom%2Cleft&blend64=aHR0cHM6Ly91cGxvYWRzLmd1aW0uY28udWsvMjAxOC8wMS8zMS9mYWNlYm9va19kZWZhdWx0LnBuZw&s=f12fb6be40a38b89cc275e3bdd598168",
"caption": "",
"credit": "The Guardian"
},
"start_date": {
"month": "3",
"day": "18",
"year": "2018"
},
"text": {
"headline": "Putin elected to six more years in office.",
"text": "<a href='https://www.theguardian.com/world/2018/mar/18/vladimir-putin-wins-russian-election-with-more-than-70-of-vote-exit-poll' target='_blank'>The Guardian / Vladimir Putin secures landslide victory in Russian election</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://home.treasury.gov/sites/default/files/favicon_1.png",
"caption": "",
"credit": "US Department of Treasury"
},
"start_date": {
"month": "4",
"day": "6",
"year": "2018"
},
"text": {
"headline": "New U.S. sanctions against Russian oligarchs.",
"text": "<a href='https://home.treasury.gov/news/press-releases/sm0338' target='_blank'>US Department of Treasury / Treasury Designates Russian Oligarchs, Officials, and Entities in Response to Worldwide Malign Activity</a>"
},
"group": "Major Events"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2015/07/29/Others/Images/2015-07-28/___hrc_201438129810.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "8",
"day": "4",
"year": "2015"
},
"text": {
"headline": "FBI begins investigating Hillary Clinton's use of a private email server while Secretary of State.",
"text": "<a href='https://www.washingtonpost.com/politics/fbi-looks-into-security-of-clintons-private-e-mail-setup/2015/08/04/2bdd85ec-3aae-11e5-8e98-115a3cf7d7ae_story.html?utm_term=.644366284bd2' target='_blank'>Washington Post / FBI looking into the security of Hillary Clinton’s private e-mail setup</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://static.politico.com/a9/f4/6bb392a6436ab4da33f3b88e60b7/james-clapper-ap.jpg",
"caption": "",
"credit": "Politico"
},
"start_date": {
"month": "5",
"day": "18",
"year": "2016"
},
"text": {
"headline": "Intel director tells of attempted cyberattacks on presidential campaigns.",
"text": "<a href='http://www.politico.com/story/2016/05/james-clapper-presidential-cyber-threats-223321' target='_blank'>Politico / Clapper: Cyber threats against presidential campaigns are growing</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.crowdstrike.com/blog/wp-content/uploads/2016/06/Blog.jpeg",
"caption": "",
"credit": "Crowdstrike"
},
"start_date": {
"month": "6",
"day": "15",
"year": "2016"
},
"text": {
"headline": "DNC's cybersecurity firm reports that Russians hacked the party's system. ",
"text": "<a href='https://www.crowdstrike.com/blog/bears-midst-intrusion-democratic-national-committee/' target='_blank'>Crowdstrike / Bears in the Midst: Intrusion into the Democratic National Committee »</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.fbi.gov/@@site-logo/fbisealitunes-small.jpg",
"caption": "",
"credit": "Federal Bureau of Investigation"
},
"start_date": {
"month": "7",
"day": "5",
"year": "2016"
},
"text": {
"headline": "Comey closes Clinton email investigation.",
"text": "<a href='https://www.fbi.gov/news/pressrel/press-releases/statement-by-fbi-director-james-b-comey-on-the-investigation-of-secretary-hillary-clinton2019s-use-of-a-personal-e-mail-system' target='_blank'>Federal Bureau of Investigation / Statement by FBI Director James B. Comey on the Investigation of Secretary Hillary Clinton’s Use of a Personal E-Mail System</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "http://www.foxnews.com/content/dam/fox-news/logo/og-fn-foxnews.jpg",
"caption": "",
"credit": "Fox News"
},
"start_date": {
"month": "7",
"day": "25",
"year": "2016"
},
"text": {
"headline": "FBI begins investigation of DNC hack.",
"text": "<a href='http://www.foxnews.com/politics/2016/07/25/fbi-to-investigate-dnc-email-hack.html' target='_blank'>Fox News / FBI to investigate DNC email hack</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "9",
"day": "25",
"year": "2016"
},
"text": {
"headline": "FBI receives letter from Page defending his communications.",
"text": "<a href='https://www.washingtonpost.com/r/2010-2019/WashingtonPost/2016/09/26/Editorial-Opinion/Graphics/2016.09.25_FBI_letter.pdf' target='_blank'>Washington Post</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.dhs.gov/profiles/dhs_gov/themes/dhs_mobile_theme/favicon.ico",
"caption": "",
"credit": "Department of Homeland Security"
},
"start_date": {
"month": "10",
"day": "7",
"year": "2016"
},
"text": {
"headline": "DHS, DNI confirm Russian hacking of DNC.",
"text": "<a href='https://www.dhs.gov/news/2016/10/07/joint-statement-department-homeland-security-and-office-director-national' target='_blank'>Department of Homeland Security / Joint Statement from the Department Of Homeland Security and Office of the Director of National Intelligence on Election Security</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.washingtonpost.com/generic/media/embedder/image/comeyimage.PNG",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "10",
"day": "28",
"year": "2016"
},
"text": {
"headline": "Comey reopens Clinton investigation.",
"text": "<a href='https://www.washingtonpost.com/apps/g/page/politics/oct-28-fbi-letter-to-congressional-leaders-on-clinton-email-investigation/2113/' target='_blank'>Washington Post / Oct. 28 FBI letter to congressional leaders on Clinton email investigation</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://static01.nyt.com/images/2016/11/06/us/politics/fbi-letter-emails/fbi-letter-emails-facebookJumbo.gif",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "11",
"day": "6",
"year": "2016"
},
"text": {
"headline": "Comey again closes Clinton investigation.",
"text": "<a href='https://www.nytimes.com/interactive/2016/11/06/us/politics/fbi-letter-emails.html' target='_blank'>New York Times / Letter From F.B.I. Related to Clinton Email Case</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.gannett-cdn.com/-mm-/423c51a153ecb476309072871a79dc219e4b3090/c=0-296-2992-1986&r=x1683&c=3200x1680/local/-/media/2016/12/12/USATODAY/USATODAY/636171522513190047-GTY-629313484.jpg",
"caption": "",
"credit": "USA Today"
},
"start_date": {
"month": "12",
"day": "12",
"year": "2016"
},
"text": {
"headline": "Congressional Republican leaders announce they will investigate Russian attempts to disrupt the election.",
"text": "<a href='https://www.usatoday.com/story/news/politics/elections/2016/12/12/mcconnell-says-congress-probe-russian-election-hack/95331688/' target='_blank'>USA Today / Republican leaders join outrage at Russia, will investigate hacks</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://static01.nyt.com/images/2017/01/20/us/20intel/20intel-facebookJumbo.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "1",
"day": "10",
"year": "2017"
},
"text": {
"headline": "Sen. Intell. Committee launches its Russia investigation.",
"text": "<a href='https://www.nytimes.com/2017/01/19/us/politics/trump-russia-associates-investigation.html' target='_blank'>New York Times / Intercepted Russian Communications Part of Inquiry Into Trump Associates</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "",
"caption": "",
"credit": "US Senate"
},
"start_date": {
"month": "1",
"day": "19",
"year": "2017"
},
"text": {
"headline": "Sens. Warren, Cardin ask Treasury to investigate Scaramucci-Russia Fund interaction.",
"text": "<a href='https://www.warren.senate.gov/files/documents/2017-01-19Letter_to_Mnuchin.pdf' target='_blank'>US Senate</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://s.abcnews.com/images/Politics/gty-yates-testimony-hb-170508_16x9_992.jpg",
"caption": "",
"credit": "ABC News"
},
"start_date": {
"month": "1",
"day": "24",
"year": "2017"
},
"text": {
"headline": "Flynn questioned by the FBI.",
"text": "<a href='http://abcnews.go.com/Politics/timeline-sally-yates-warnings-white-house-mike-flynn/story?id=47272979' target='_blank'>ABC News / A timeline of Sally Yates’ warnings to the White House about Mike Flynn</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://s.abcnews.com/images/Politics/gty-yates-testimony-hb-170508_16x9_992.jpg",
"caption": "",
"credit": "ABC News"
},
"start_date": {
"month": "1",
"day": "25",
"year": "2017"
},
"text": {
"headline": "Acting AG Sally Yates hears about Flynn interview.",
"text": "<a href='http://abcnews.go.com/Politics/timeline-sally-yates-warnings-white-house-mike-flynn/story?id=47272979' target='_blank'>ABC News / A timeline of Sally Yates’ warnings to the White House about Mike Flynn</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://s.abcnews.com/images/Politics/gty-yates-testimony-hb-170508_16x9_992.jpg",
"caption": "",
"credit": "ABC News"
},
"start_date": {
"month": "1",
"day": "26",
"year": "2017"
},
"text": {
"headline": "Yates warns White House counsel Don McGahn about Flynn.",
"text": "<a href='http://abcnews.go.com/Politics/timeline-sally-yates-warnings-white-house-mike-flynn/story?id=47272979' target='_blank'>ABC News / A timeline of Sally Yates’ warnings to the White House about Mike Flynn</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "",
"caption": "",
"credit": "US Senate"
},
"start_date": {
"month": "1",
"day": "30",
"year": "2017"
},
"text": {
"headline": "Treasury Sec. Mnuchin does not say if Scaramucci violated sanctions policy.",
"text": "<a href='https://www.warren.senate.gov/files/documents/Mnuchin_Response-20170130.pdf' target='_blank'>US Senate</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "",
"caption": "",
"credit": "US Department of Justice"
},
"start_date": {
"month": "2",
"day": "16",
"year": "2017"
},
"text": {
"headline": "The FBI interviews Papadopoulos a second time.",
"text": "<a href='https://www.justice.gov/file/1007346/download' target='_blank'>US Department of Justice</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "",
"caption": "",
"credit": "House of Representatives"
},
"start_date": {
"month": "3",
"day": "1",
"year": "2017"
},
"text": {
"headline": "House Intelligence Committee launches Russia investigation.",
"text": "<a href='https://intelligence.house.gov/news/documentsingle.aspx?DocumentID=767' target='_blank'>House of Representatives</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.washingtonpost.com/pbox.php?url=http://www.washingtonpost.com/blogs/post-politics/files/2017/03/Trump_Russia_64059-ec396.jpg&w=1484&op=resize&opt=1&filter=antialias&t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "3",
"day": "20",
"year": "2017"
},
"text": {
"headline": "Comey pubicly verifies FBI investigation of Russia and Trump campaign connections.",
"text": "<a href='https://www.washingtonpost.com/news/post-politics/wp/2017/03/20/full-transcript-fbi-director-james-comey-testifies-on-russian-interference-in-2016-election/?utm_term=.c40ec02edc84' target='_blank'>Washington Post / Full transcript: FBI Director James Comey testifies on Russian interference in 2016 election</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://media.wired.com/photos/59265f6bcfe0d93c4742ff92/191:100/pass/Rep-Devin-Nunes_HP_GettyImages-657551288.jpg",
"caption": "",
"credit": "Wired"
},
"start_date": {
"month": "3",
"day": "21",
"year": "2017"
},
"text": {
"headline": "Nunes visits White House grounds, learns about incidental surveillance of Trump associates.",
"text": "<a href='https://www.wired.com/2017/04/devin-nunes-white-house-trump-surveillance/' target='_blank'>Wired / Devin Nunes: A Timeline of His White House Visits and Trump Surveillance Claims</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.ajc.com/rf/image_large/Wires/w2/AP_Top_News_General_Stories/2017/03/22/Images/58b1a5b28a9b4c13a859d18faba84677.jpg",
"caption": "",
"credit": "AJC"
},
"start_date": {
"month": "3",
"day": "22",
"year": "2017"
},
"text": {
"headline": "Nunes personally briefs president on surveillance news.",
"text": "<a href='http://www.ajc.com/news/national/read-transcripts-rep-devin-nunes-news-conferences-about-trump-surveillance/NdZ4qQv7uBnjcH9E3HSRPJ/' target='_blank'>AJC / Read transcripts of Rep. Devin Nunes’ news conferences about Trump surveillance</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/160819101058-01-paul-manafort-resigns-t1-super-tease.jpg",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "3",
"day": "24",
"year": "2017"
},
"text": {
"headline": "Nunes cancels House intelligence hearing with Yates and former intelligence heads.",
"text": "<a href='http://www.cnn.com/2017/03/24/politics/devin-nunes-paul-manafort-house-intelligence/' target='_blank'>CNN / Partisan split at House intel committee over canceled open hearing</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/170509181301-james-comey-fired-letter-trump-super-tease.png",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "5",
"day": "9",
"year": "2017"
},
"text": {
"headline": "Trump fires Comey.",
"text": "<a href='http://www.cnn.com/2017/05/09/politics/fbi-james-comey-fired-letter/' target='_blank'>CNN / Trump's letter firing FBI Director James Comey</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2017/06/14/National-Security/Images/AFP_PI2R1.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "6",
"day": "14",
"year": "2017"
},
"text": {
"headline": "Washington Post reports Mueller is investigating Trump for possible obstruction of justice.",
"text": "<a href='https://www.washingtonpost.com/world/national-security/special-counsel-is-investigating-trump-for-possible-obstruction-of-justice/2017/06/14/9ce02506-5131-11e7-b064-828ba60fbb98_story.html?utm_term=.5af02ccab084' target='_blank'>Washington Post / Special counsel is investigating Trump for possible obstruction of justice, officials say</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/170523090607-02-coats-rogers-file-restricted-super-tease.jpg",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "6",
"day": "15",
"year": "2017"
},
"text": {
"headline": "CNN: Near this date, intelligence chiefs told senators that the president asked them to deny any colllusion with Russia.",
"text": "<a href='http://www.cnn.com/2017/06/22/politics/intel-chiefs-trump-refute-collusion/index.html' target='_blank'>CNN / Intel chiefs tell investigators Trump suggested they refute collusion with Russians</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://s2.reutersmedia.net/resources/r/?m=02&d=20170618&t=2&i=1189519532&w=1200&r=LYNXMPED5H0VF",
"caption": "",
"credit": "Reuters"
},
"start_date": {
"month": "6",
"day": "18",
"year": "2017"
},
"text": {
"headline": "Trump attorney Jay Sekulow says he has not been told the president is under investigation for obstruction.",
"text": "<a href='http://www.reuters.com/article/us-usa-trump-russia-idUSKBN1990O7' target='_blank'>Reuters / Trump lawyer says president not informed he is under investigation</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://cdn.cnn.com/cnnnext/dam/assets/170711174813-01-robert-mueller-0621-super-tease.jpg",
"caption": "",
"credit": "CNN"
},
"start_date": {
"month": "7",
"day": "19",
"year": "2017"
},
"text": {
"headline": "Following Mueller request, White House directs staff to preserve documents.",
"text": "<a href='http://www.cnn.com/2017/07/21/politics/robert-mueller-russia-investigation-trump-tower-meeting/index.html' target='_blank'>CNN / Mueller asks WH to preserve info from Trump Jr. meeting</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://assets.bwbx.io/images/users/iqjWHBFdfxIU/iFL8GDf1fXY8/v0/1200x675.jpg",
"caption": "",
"credit": "Bloomberg"
},
"start_date": {
"month": "7",
"day": "20",
"year": "2017"
},
"text": {
"headline": "Report: Mueller expands investigation to include Trump business dealings.",
"text": "<a href='https://www.bloomberg.com/news/articles/2017-07-20/mueller-is-said-to-expand-probe-to-trump-business-transactions' target='_blank'>Bloomberg / Mueller Expands Probe to Trump Business Transactions</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://static01.nyt.com/images/2017/07/26/world/26dc-intel/26dc-intel-facebookJumbo.jpg",
"caption": "",
"credit": "New York Times"
},
"start_date": {
"month": "7",
"day": "25",
"year": "2017"
},
"text": {
"headline": "Manafort meets with Senate Intelligence Committee staff, who ask about June 2016 Trump Tower meeting. ",
"text": "<a href='https://www.nytimes.com/2017/07/25/us/politics/paul-manafort-russia-senate-intelligence-trump.html?_r=0' target='_blank'>New York Times / Manafort Talks With Senate Investigators About Meeting With Russians</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://www.washingtonpost.com/rf/image_1484w/2010-2019/WashingtonPost/2017/08/09/National-Politics/Images/Trump_Russia_Probe_61169-1f81b-4666.jpg?t=20170517",
"caption": "",
"credit": "Washington Post"
},
"start_date": {
"month": "7",
"day": "26",
"year": "2017"
},
"text": {
"headline": "FBI agents raid Manafort's home.",
"text": "<a href='https://www.washingtonpost.com/politics/fbi-conducted-predawn-raid-of-former-trump-campaign-chairman-manaforts-home/2017/08/09/5879fa9c-7c45-11e7-9d08-b79f191668ed_story.html?hpid=hp_hp-top-table-high_manafort-1010am%3Ahomepage%2Fstory&utm_term=.91fbde159e28' target='_blank'>Washington Post / FBI conducted predawn raid of former Trump campaign chairman Manafort’s home</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://foreignpolicymag.files.wordpress.com/2017/07/browder.jpg",
"caption": "",
"credit": "Foreign Policy"
},
"start_date": {
"month": "7",
"day": "27",
"year": "2017"
},
"text": {
"headline": "Investor Bill Browder to senators: Veselnitskaya was pushing Moscow's agenda at 2016 Trump Tower meeting.",
"text": "<a href='http://foreignpolicy.com/2017/07/27/browder-says-no-doubt-lawyer-who-met-with-trump-jr-a-russian-agent/' target='_blank'>Foreign Policy / Browder Says “No Doubt” Lawyer Who Met With Trump Jr. a Russian Agent</a>"
},
"group": "Investigations"
},
{
"media": {
"url": "https://assets.bwbx.io/images/users/iqjWHBFdfxIU/icjrRhD1JeeA/v0/1200x800.jpg",
"caption": "",
"credit": "Bloomberg"
},
"start_date": {
"month": "8",
"day": "2",
"year": "2017"
},
"text": {
"headline": "Trump campaign turns over 20,000 pages of documents to Senate Judiciary Committee.",
"text": "<a href='https://www.bloomberg.com/news/articles/2017-08-08/trump-campaign-turns-over-thousands-of-documents-in-russia-probe' target='_blank'>Bloomberg / Trump Campaign Turns Over Thousands of Documents in Russia Probe</a>"
},
"group": "Investigations"
},
{