-
Notifications
You must be signed in to change notification settings - Fork 0
/
testdata.json
1094 lines (1094 loc) · 34.7 KB
/
testdata.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
{
"section": "home",
"last_updated": "2020-08-15T16:32:54-04:00",
"num_results": 53,
"results": [
{
"section": "us",
"subsection": "",
"title": "‘We’re Clearly Not Doing Enough’: Drop in Testing Hampers Coronavirus Response",
"abstract": "For the first time during the pandemic, the United States saw a downward trend in the number of coronavirus tests conducted each day.",
"byline": "By Sarah Mervosh, Nicholas Bogel-Burroughs and Sheryl Gay Stolberg",
"updated_date": "2020-08-15T16:25:42-04:00",
"published_date": "2020-08-15T05:00:16-04:00",
"short_url": "https://nyti.ms/3astVL3",
"des_facet": [
"Coronavirus (2019-nCoV)",
"Tests (Medical)",
"Contact Tracing (Public Health)",
"Quarantines"
],
"org_facet": [
"Health and Human Services Department"
],
"per_facet": [
"Giroir, Brett P"
]
},
{
"section": "us",
"subsection": "",
"title": "As Colleges Move Classes Online, Families Rebel Against the Cost",
"abstract": "Schools face rising demands for tuition rebates, increased aid and leaves of absence as students ask if college is becoming “glorified Skype.”",
"byline": "By Shawn Hubler",
"updated_date": "2020-08-15T16:25:41-04:00",
"published_date": "2020-08-15T05:00:13-04:00",
"short_url": "https://nyti.ms/343a9V9",
"des_facet": [
"Coronavirus Reopenings",
"Colleges and Universities",
"Financial Aid (Education)",
"Tuition"
],
"org_facet": [
"Chapman University"
],
"per_facet": [
"Feldman, David H"
]
},
{
"section": "world",
"subsection": "",
"title": "Coronavirus Live Updates: In Arizona, a School District Cancels Classes After Teacher ‘Sick Out’",
"abstract": "Mitt Romney blasts President Trump’s handling of pandemic. Many U.S. cities fear a public transit “death spiral.” Brazil’s extensive outbreak makes it a good vaccine testing ground.",
"byline": "",
"updated_date": "2020-08-15T16:32:32-04:00",
"published_date": "2020-08-15T08:00:10-04:00",
"short_url": "https://nyti.ms/3arvCII",
"des_facet": [
"Coronavirus (2019-nCoV)"
],
"org_facet": [],
"per_facet": []
},
{
"section": "world",
"subsection": "americas",
"title": "Coronavirus Crisis Has Made Brazil an Ideal Vaccine Laboratory",
"abstract": "Widespread contagion, a deep bench of scientists and a robust vaccine-making infrastructure have made Brazil an important player in the quest to find a vaccine.",
"byline": "By Manuela Andreoni and Ernesto Londoño",
"updated_date": "2020-08-15T16:25:41-04:00",
"published_date": "2020-08-15T13:41:00-04:00",
"short_url": "https://nyti.ms/2Y1WXfK",
"des_facet": [
"Vaccination and Immunization",
"Coronavirus (2019-nCoV)"
],
"org_facet": [
"AstraZeneca PLC",
"Oxford University",
"Pfizer Inc"
],
"per_facet": []
},
{
"section": "world",
"subsection": "europe",
"title": "Mothers, Babies Stranded in Ukraine Surrogacy Industry",
"abstract": "Virus travel bans are wreaking havoc on surrogacy agencies that help same-sex couples build families.",
"byline": "By Maria Varenikova",
"updated_date": "2020-08-15T16:25:41-04:00",
"published_date": "2020-08-15T13:35:40-04:00",
"short_url": "https://nyti.ms/3kKgdbc",
"des_facet": [
"Surrogate Motherhood",
"Pregnancy and Childbirth",
"Travel Warnings",
"Coronavirus (2019-nCoV)",
"Child Custody and Support"
],
"org_facet": [],
"per_facet": []
},
{
"section": "us",
"subsection": "",
"title": "Postal Crisis Ripples Across Nation as Election Looms",
"abstract": "President Trump’s furious objection to mail-in balloting and a new Trump-allied postmaster general are raising fears about the election and the Postal Service.",
"byline": "By Luke Broadwater, Jack Healy, Michael D. Shear and Hailey Fuchs",
"updated_date": "2020-08-15T16:25:41-04:00",
"published_date": "2020-08-15T12:39:29-04:00",
"short_url": "https://nyti.ms/2PUC95f",
"des_facet": [
"Postal Service and Post Offices",
"Absentee Voting",
"Presidential Election of 2020",
"Coronavirus (2019-nCoV)"
],
"org_facet": [
"Postal Service (US)"
],
"per_facet": [
"DeJoy, Louis",
"Trump, Donald J"
]
},
{
"section": "us",
"subsection": "",
"title": "Kamala Harris, Daughter of Immigrants, Is the Face of America’s Demographic Shift",
"abstract": "Her parents’ arrival to Berkeley as young graduate students was the beginning of a historic wave of immigration from outside Europe that would change the United States in ways its leaders never imagined.",
"byline": "By Sabrina Tavernise",
"updated_date": "2020-08-15T16:25:48-04:00",
"published_date": "2020-08-15T11:17:03-04:00",
"short_url": "https://nyti.ms/2DVnxjF",
"des_facet": [
"Immigration and Emigration",
"Politics and Government",
"Presidential Election of 2020",
"Black People",
"Indian-Americans",
"Race and Ethnicity",
"Jamaican-Americans",
"Vice Presidents and Vice Presidency (US)",
"Whites",
"Population"
],
"org_facet": [],
"per_facet": [
"Harris, Kamala D",
"Hashmi, Ghazala"
]
},
{
"section": "world",
"subsection": "middleeast",
"title": "Shifting Dynamics of the Mideast Pushed Israel and U.A.E. Together",
"abstract": "Prime Minister Netanyahu’s quest to open relations with Arab countries without settling the Palestinian conflict long seemed quixotic. External events changed the equation.",
"byline": "By David M. Halbfinger and Ronen Bergman",
"updated_date": "2020-08-15T16:25:48-04:00",
"published_date": "2020-08-15T15:29:58-04:00",
"short_url": "https://nyti.ms/3g4SkY9",
"des_facet": [
"Defense and Military Forces",
"International Relations",
"United States International Relations",
"Palestinians"
],
"org_facet": [],
"per_facet": [
"Netanyahu, Benjamin"
]
},
{
"section": "us",
"subsection": "politics",
"title": "The Cop Was the Hero in One Viral Video. Another Told a Different Story.",
"abstract": "Bobby White was celebrated as the “Basketball Cop” after millions saw a video of him shooting hoops with local teenagers. A recording from two years earlier shows him throwing a young Black man on the hood of his car during an arrest.",
"byline": "By Nicholas Casey",
"updated_date": "2020-08-15T16:25:46-04:00",
"published_date": "2020-08-15T14:21:01-04:00",
"short_url": "https://nyti.ms/33Yfdua",
"des_facet": [
"Police Brutality, Misconduct and Shootings",
"Police",
"Race and Ethnicity"
],
"org_facet": [],
"per_facet": []
},
{
"section": "briefing",
"subsection": "",
"title": "11 of Our Best Weekend Reads",
"abstract": "Black activists in Chicago. Retail in Manhattan. An elephant’s pandemic journey. Bike shorts. And more.",
"byline": "By Jillian Rayfield",
"updated_date": "2020-08-15T16:25:47-04:00",
"published_date": "2020-08-14T12:42:18-04:00",
"short_url": "https://nyti.ms/342XTUK",
"des_facet": [],
"org_facet": [],
"per_facet": []
},
{
"section": "briefing",
"subsection": "",
"title": "News Quiz: Kamala Harris, Vaccine, Football",
"abstract": "Did you follow the headlines this week?",
"byline": "Compiled by Will Dudding, Anna Schaverien and Jessica Anderson",
"updated_date": "2020-08-15T16:25:45-04:00",
"published_date": "2020-08-14T03:30:01-04:00",
"short_url": "https://nyti.ms/33YhmpF",
"des_facet": [],
"org_facet": [],
"per_facet": []
},
{
"section": "podcasts",
"subsection": "",
"title": "Episode Four: ‘Here’s Another Fun Thing You Can Do’",
"abstract": "Is it possible to limit the power of white parents?",
"byline": "",
"updated_date": "2020-08-15T06:31:04-04:00",
"published_date": "2020-08-13T06:00:04-04:00",
"short_url": "https://nyti.ms/2FfGJc5",
"des_facet": [
"Education (K-12)",
"Parenting"
],
"org_facet": [
"Serial Productions"
],
"per_facet": []
},
{
"section": "us",
"subsection": "politics",
"title": "A Conversation About Vice-Presidential Nominee Kamala Harris",
"abstract": "Our reporters give you the back story and breakdown what this means for the election.",
"byline": "",
"updated_date": "2020-08-15T06:31:05-04:00",
"published_date": "2020-07-14T12:34:45-04:00",
"short_url": "https://nyti.ms/2CZNq12",
"des_facet": [
"Presidential Election of 2020",
"United States Politics and Government"
],
"org_facet": [
"Democratic Party",
"Republican Party"
],
"per_facet": [
"Biden, Joseph R Jr",
"Castro, Julian",
"Medina, Jennifer",
"Trump, Donald J"
]
},
{
"section": "opinion",
"subsection": "sunday",
"title": "Biden Dreams of Kamelot",
"abstract": "Trumpworld dismisses Harris as calculating. But we need a woman who can calculate a way out of the mess this president has made.",
"byline": "By Maureen Dowd",
"updated_date": "2020-08-15T16:17:28-04:00",
"published_date": "2020-08-15T14:30:09-04:00",
"short_url": "",
"des_facet": [
"Presidential Election of 2020",
"Vice Presidents and Vice Presidency (US)"
],
"org_facet": [],
"per_facet": [
"Harris, Kamala D",
"Trump, Donald J"
]
},
{
"section": "opinion",
"subsection": "",
"title": "The 19th Amendment: An Important Milestone in an Unfinished Journey",
"abstract": "A century later, it’s past time to recognize the women of color who were sidelined in the fight for gender and racial equality.",
"byline": "By The Editorial Board",
"updated_date": "2020-08-15T16:17:30-04:00",
"published_date": "2020-08-15T14:30:09-04:00",
"short_url": "https://nyti.ms/3iJgVn9",
"des_facet": [
"Black People",
"Discrimination",
"Women and Girls",
"Women's Rights",
"Race and Ethnicity",
"Nineteenth Amendment (US Constitution)",
"Voter Registration and Requirements"
],
"org_facet": [],
"per_facet": []
},
{
"section": "opinion",
"subsection": "",
"title": "The Week QAnon Went Mainstream",
"abstract": "A supporter of the dangerous conspiracy theory is most likely headed to Congress. The social media platforms have some soul-searching to do.",
"byline": "By Charlie Warzel",
"updated_date": "2020-08-15T16:17:30-04:00",
"published_date": "2020-08-15T11:00:07-04:00",
"short_url": "https://nyti.ms/2DYHHcq",
"des_facet": [
"QAnon",
"Social Media",
"Fringe Groups and Movements",
"Computers and the Internet",
"United States Politics and Government",
"Elections, House of Representatives"
],
"org_facet": [
"4chan",
"Facebook Inc",
"Twitter",
"YouTube.com"
],
"per_facet": [
"Greene, Marjorie Taylor (1974- )",
"Trump, Donald J",
"Zuckerberg, Mark E"
]
},
{
"section": "opinion",
"subsection": "",
"title": "Learning to Love Joe Biden",
"abstract": "He’s not out on the campaign trail now, but when he was a young man in a hurry, he told us who he was.",
"byline": "By Jennifer Senior",
"updated_date": "2020-08-15T16:17:30-04:00",
"published_date": "2020-08-15T11:00:10-04:00",
"short_url": "https://nyti.ms/3iHgsC2",
"des_facet": [
"Presidential Election of 2020",
"Presidential Election of 1988",
"Presidential Elections (US)",
"Coronavirus (2019-nCoV)"
],
"org_facet": [
"Democratic Party"
],
"per_facet": [
"Biden, Joseph R Jr",
"Harris, Kamala D",
"Hart, Gary",
"Cramer, Richard Ben"
]
},
{
"section": "opinion",
"subsection": "",
"title": "The British Monarchy Is a Game. Harry and Meghan Didn’t Want to Play.",
"abstract": "Prince Harry confused sacrifice with service. Meghan, Duchess of Sussex, confused it with fame.",
"byline": "By Tanya Gold",
"updated_date": "2020-08-15T16:17:28-04:00",
"published_date": "2020-08-15T11:53:36-04:00",
"short_url": "https://nyti.ms/3g7UqH7",
"des_facet": [
"Royal Families"
],
"org_facet": [],
"per_facet": [
"Harry, Duke of Sussex",
"Markle, Meghan"
]
},
{
"section": "opinion",
"subsection": "",
"title": "The Improbable Journey of the Suffragist Sash",
"abstract": "How a strip of fabric went from iconic protest accessory to pageant queen prop to bachelorette party wear.",
"byline": "By Hilary Levey Friedman",
"updated_date": "2020-08-15T16:17:30-04:00",
"published_date": "2020-08-15T11:00:07-04:00",
"short_url": "https://nyti.ms/2DMlAWU",
"des_facet": [
"Nineteenth Amendment (US Constitution)",
"Women's Rights",
"Women and Girls",
"Fashion and Apparel",
"Beauty Contests"
],
"org_facet": [
"Miss America Organization"
],
"per_facet": [
"Pankhurst, Emmeline",
"Paul, Alice"
]
},
{
"section": "opinion",
"subsection": "",
"title": "‘Kamala Harris’s Nomination Is Everything to Me’",
"abstract": "For some, the senator’s being on the Democratic ticket is about more than just the vice presidency.",
"byline": "By Rachel L. Harris",
"updated_date": "2020-08-15T16:17:33-04:00",
"published_date": "2020-08-15T11:00:08-04:00",
"short_url": "https://nyti.ms/2DV52Mi",
"des_facet": [
"Presidential Election of 2020",
"United States Politics and Government",
"Indian-Americans",
"Vice Presidents and Vice Presidency (US)"
],
"org_facet": [
"Democratic Party"
],
"per_facet": [
"Biden, Joseph R Jr",
"Harris, Kamala D"
]
},
{
"section": "opinion",
"subsection": "",
"title": "Is Gaming the Future of the Virtual World?",
"abstract": "During the pandemic, digital three-dimensional environments are where much of life is taking place.",
"byline": "By Ruchir Sharma",
"updated_date": "2020-08-15T16:17:33-04:00",
"published_date": "2020-08-15T11:00:04-04:00",
"short_url": "https://nyti.ms/3kO9s8k",
"des_facet": [
"Computer and Video Games",
"Computers and the Internet",
"Virtual Reality (Computers)",
"E-Commerce"
],
"org_facet": [],
"per_facet": []
},
{
"section": "opinion",
"subsection": "",
"title": "The Undertold, Undersold Story of Kamala Harris",
"abstract": "As a prosecutor she can make you tremble. But as a trailblazer can she make you cry?",
"byline": "By Frank Bruni",
"updated_date": "2020-08-15T16:17:34-04:00",
"published_date": "2020-08-14T06:44:48-04:00",
"short_url": "https://nyti.ms/30VTOjp",
"des_facet": [
"Presidential Election of 2020",
"Women and Girls",
"Vice Presidents and Vice Presidency (US)",
"United States Politics and Government",
"Race and Ethnicity",
"Black People"
],
"org_facet": [],
"per_facet": [
"Harris, Kamala D",
"Biden, Joseph R Jr"
]
},
{
"section": "opinion",
"subsection": "",
"title": "The Unlikely Triumph of Italian Nationhood",
"abstract": "Italy coheres as America breaks apart.",
"byline": "By Roger Cohen",
"updated_date": "2020-08-15T16:17:34-04:00",
"published_date": "2020-08-14T19:00:05-04:00",
"short_url": "https://nyti.ms/2DTp4GZ",
"des_facet": [
"Coronavirus (2019-nCoV)"
],
"org_facet": [],
"per_facet": []
},
{
"section": "opinion",
"subsection": "",
"title": "Set Parents Free",
"abstract": "Everyone is terrified of both sickness and censure. Are there better ways to raise our children amid a pandemic?",
"byline": "By Kim Brooks",
"updated_date": "2020-08-15T16:17:35-04:00",
"published_date": "2020-08-14T06:25:03-04:00",
"short_url": "https://nyti.ms/30VwuCg",
"des_facet": [
"Children and Childhood",
"Coronavirus Risks and Safety Concerns",
"Education (K-12)",
"Parenting",
"Anxiety and Stress",
"Coronavirus (2019-nCoV)",
"Loneliness"
],
"org_facet": [],
"per_facet": []
},
{
"section": "books",
"subsection": "",
"title": "‘We’ve Already Survived an Apocalypse’: Indigenous Writers Are Changing Sci-Fi",
"abstract": "Long underrepresented in genre fiction, Native American and First Nations authors are reshaping its otherworldly (but still often Eurocentric) worlds.",
"byline": "By Alexandra Alter",
"updated_date": "2020-08-15T11:50:13-04:00",
"published_date": "2020-08-14T10:07:27-04:00",
"short_url": "https://nyti.ms/2Y2FTWJ",
"des_facet": [
"Books and Literature",
"Writing and Writers",
"Science Fiction",
"Indigenous People",
"Native Americans",
"Navajo Indians",
"Apache Indians",
"Empire of Wild: A Novel (Book)",
"Trail of Lightning (Book)",
"The Only Good Indians (Book)",
"Elatsoe (Book)"
],
"org_facet": [],
"per_facet": [
"Dimaline, Cherie",
"Jones, Stephen Graham",
"Roanhorse, Rebecca",
"Little Badger, Darcie"
]
},
{
"section": "t-magazine",
"subsection": "",
"title": "15 Creative Women for Our Time",
"abstract": "Whether in the realm of art or design, food or fashion, these talents have stayed true to themselves and, in doing so, have pushed the boundaries of their respective fields.",
"byline": "",
"updated_date": "2020-08-15T11:50:09-04:00",
"published_date": "2020-08-10T07:17:21-04:00",
"short_url": "https://nyti.ms/2DE7PJt",
"des_facet": [],
"org_facet": [],
"per_facet": []
},
{
"section": "magazine",
"subsection": "",
"title": "The Particular Texture and Joy of Homemade Ice Cream",
"abstract": "The moments spent watching and waiting for this chocolate-flake raspberry ice cream to form capture a childish delight that we could all use right now.",
"byline": "By Dorie Greenspan",
"updated_date": "2020-08-15T11:50:09-04:00",
"published_date": "2020-08-12T05:00:05-04:00",
"short_url": "https://nyti.ms/3gUmVZS",
"des_facet": [
"Ice Cream and Frozen Desserts",
"Chocolate",
"Raspberries"
],
"org_facet": [],
"per_facet": []
},
{
"section": "world",
"subsection": "europe",
"title": "Under Siege in Belarus, Lukashenko Turns to Putin",
"abstract": "The shift toward Russia comes at a time of crisis for President Aleksandr G. Lukashenko of Belarus, who has frequently played Moscow off against the West.",
"byline": "By Andrew Higgins and Ivan Nechepurenko",
"updated_date": "2020-08-15T16:26:01-04:00",
"published_date": "2020-08-15T10:15:26-04:00",
"short_url": "https://nyti.ms/2FsPeAQ",
"des_facet": [
"Demonstrations, Protests and Riots",
"Elections"
],
"org_facet": [
"European Union"
],
"per_facet": [
"Lukashenko, Aleksandr G",
"Putin, Vladimir V"
]
},
{
"section": "world",
"subsection": "europe",
"title": "Polish Cleric Retires in Face of Cover-Up Accusations. It’s Not Enough, Critics Say.",
"abstract": "Pope Francis accepted the resignation of Archbishop Slawoj Leszek Glodz of Poland, a move seen as a subtle rebuke. But far more is needed to address the abuse of children by priests, advocates say.",
"byline": "By Elisabetta Povoledo and Anatol Magdziarz",
"updated_date": "2020-08-15T15:11:08-04:00",
"published_date": "2020-08-14T15:45:33-04:00",
"short_url": "https://nyti.ms/3iFeYZ2",
"des_facet": [
"Child Abuse and Neglect",
"Priests",
"Sex Crimes"
],
"org_facet": [
"Roman Catholic Church"
],
"per_facet": [
"Francis"
]
},
{
"section": "us",
"subsection": "politics",
"title": "Trump Ads Attack Biden Through Deceptive Editing and Hyperbole",
"abstract": "We reviewed all of the Trump campaign’s television ads since June. Two-thirds contained clearly misleading claims or videos.",
"byline": "By Linda Qiu",
"updated_date": "2020-08-15T15:11:13-04:00",
"published_date": "2020-08-15T08:49:39-04:00",
"short_url": "https://nyti.ms/2E7OSPe",
"des_facet": [
"Presidential Election of 2020",
"Police Reform",
"Taxation",
"United States Politics and Government",
"Political Advertising",
"Federal Taxes (US)",
"Police",
"Black Lives Matter Movement",
"Tax Cuts and Jobs Act (2017)",
"Charter Schools"
],
"org_facet": [],
"per_facet": []
},
{
"section": "technology",
"subsection": "",
"title": "Pinterest Employees Demand Gender and Race Equality",
"abstract": "More than 200 said they stood in solidarity with three former co-workers who have accused the company of discrimination.",
"byline": "By Erin Griffith",
"updated_date": "2020-08-15T15:11:13-04:00",
"published_date": "2020-08-14T18:43:50-04:00",
"short_url": "https://nyti.ms/2FiecTg",
"des_facet": [
"Discrimination",
"Social Media",
"Suits and Litigation (Civil)",
"Workplace Hazards and Violations",
"Women and Girls",
"Wages and Salaries",
"Executive Compensation"
],
"org_facet": [
"Pinterest"
],
"per_facet": [
"Brougher, Fancoise",
"Silbermann, Ben"
]
},
{
"section": "world",
"subsection": "asia",
"title": "Japanese Politicians Mark War Anniversary at Contentious Shrine",
"abstract": "Shinjiro Koizumi, a rising political star, was one of four cabinet ministers who went to Yasukuni Shrine, which has strong links to Japan’s imperial past.",
"byline": "By Motoko Rich",
"updated_date": "2020-08-15T15:11:13-04:00",
"published_date": "2020-08-15T05:04:55-04:00",
"short_url": "https://nyti.ms/2DUkTL4",
"des_facet": [
"World War II (1939-45)"
],
"org_facet": [
"Yasukuni Shrine (Tokyo, Japan)",
"Liberal Democratic Party (Japan)"
],
"per_facet": [
"Koizumi, Shinjiro"
]
},
{
"section": "world",
"subsection": "europe",
"title": "‘The Fish Rots From the Head’: How a Salmon Crisis Stoked Russian Protests",
"abstract": "Plentiful salmon used to be one of the few perks for residents of Russia’s Far East. Then the fish vanished, and many local residents blamed President Putin.",
"byline": "By Anton Troianovski and Sergey Ponomarev",
"updated_date": "2020-08-15T15:11:09-04:00",
"published_date": "2020-08-15T05:00:23-04:00",
"short_url": "https://nyti.ms/31N88K0",
"des_facet": [
"Fish and Other Marine Life",
"Salmon",
"Fishing, Commercial",
"Demonstrations, Protests and Riots"
],
"org_facet": [
"World Wildlife Fund"
],
"per_facet": [
"Furgal, Sergei I",
"Putin, Vladimir V"
]
},
{
"section": "us",
"subsection": "",
"title": "A Bitter Wind at a Shaky Time, and Iowa Is Left Reeling",
"abstract": "Devastating windstorms just before harvest were the last thing that Iowa farmers needed.",
"byline": "By Will Wright",
"updated_date": "2020-08-15T15:11:09-04:00",
"published_date": "2020-08-15T10:41:23-04:00",
"short_url": "https://nyti.ms/31VVtVq",
"des_facet": [
"Agriculture and Farming",
"Corn",
"Coronavirus (2019-nCoV)",
"Soybeans"
],
"org_facet": [],
"per_facet": []
},
{
"section": "business",
"subsection": "",
"title": "America’s Retirement Race Gap, and Ideas for Closing It",
"abstract": "Scholars and policymakers have proposed ways to fix the inequities between whites and people of color, including changes to Social Security and building wealth from birth.",
"byline": "By Mark Miller",
"updated_date": "2020-08-15T15:21:14-04:00",
"published_date": "2020-08-14T05:00:34-04:00",
"short_url": "https://nyti.ms/2DRkp8r",
"des_facet": [
"Retirement",
"Black People",
"Income Inequality",
"Social Security (US)",
"Hispanic-Americans",
"Discrimination",
"Labor and Jobs",
"Pensions and Retirement Plans",
"Longevity",
"Stocks and Bonds"
],
"org_facet": [
"Center for Retirement Research at Boston College"
],
"per_facet": [
"Hamilton, Darrick",
"Kijakazi, Kilolo"
]
},
{
"section": "sports",
"subsection": "soccer",
"title": "Bayern 8, Barcelona 2. The End.",
"abstract": "A thrashing in the Champions League quarterfinals showed Bayern Munich at the peak of its powers and Barcelona at the end of the line.",
"byline": "By Rory Smith",
"updated_date": "2020-08-15T15:11:08-04:00",
"published_date": "2020-08-14T18:21:23-04:00",
"short_url": "https://nyti.ms/33Zjv4j",
"des_facet": [
"Soccer",
"UEFA Champions League (Soccer)"
],
"org_facet": [
"Barcelona (Soccer Team)",
"Bayern Munich (Soccer Team)"
],
"per_facet": [
"Messi, Lionel"
]
},
{
"section": "at-home",
"subsection": "",
"title": "Stay Cool Without Racking Up a Bill",
"abstract": "Four ways to air-condition your home more efficiently in the summer heat.",
"byline": "By Sara Aridi",
"updated_date": "2020-08-14T17:31:38-04:00",
"published_date": "2020-08-08T17:00:07-04:00",
"short_url": "https://nyti.ms/2CezUqg",
"des_facet": [
"Content Type: Service",
"Energy Efficiency",
"Fans (Airflow)",
"Air Conditioning"
],
"org_facet": [],
"per_facet": []
},
{
"section": "well",
"subsection": "",
"title": "Feel Like You’re Going Out of Your Mind? Consider Your Mind-Set",
"abstract": "No one likes to make mistakes, but how you manage them can be a key to a stronger future.",
"byline": "By Alina Tugend",
"updated_date": "2020-08-14T17:31:38-04:00",
"published_date": "2020-08-12T05:00:16-04:00",
"short_url": "https://nyti.ms/3iyVLYO",
"des_facet": [
"Education",
"Research",
"Mental Health and Disorders"
],
"org_facet": [],
"per_facet": []
},
{
"section": "at-home",
"subsection": "",
"title": "What Happens When the Season Changes?",
"abstract": "Taking refuge outdoors is still an option.",
"byline": "By Sam Sifton",
"updated_date": "2020-08-14T17:31:38-04:00",
"published_date": "2020-08-12T16:30:03-04:00",
"short_url": "https://nyti.ms/3kIEuP4",
"des_facet": [
"Quarantine (Life and Culture)"
],
"org_facet": [],
"per_facet": []
},
{
"section": "parenting",
"subsection": "",
"title": "Are You Overpraising Your Child?",
"abstract": "All those “Good jobs!” might be undermining kids’ independence and self-confidence.",
"byline": "By Paul L. Underwood",
"updated_date": "2020-08-14T17:31:38-04:00",
"published_date": "2020-08-13T12:07:20-04:00",
"short_url": "https://nyti.ms/3iAfXJW",
"des_facet": [
"Parenting",
"Children and Childhood",
"Anxiety and Stress"
],
"org_facet": [],
"per_facet": []
},
{
"section": "smarter-living",
"subsection": "",
"title": "How to Add More Play to Your Grown-Up Life — Even Now",
"abstract": "Play can feel silly, unproductive and time consuming. And that’s precisely the point.",
"byline": "By Kristin Wong",
"updated_date": "2020-08-14T17:31:38-04:00",
"published_date": "2020-08-14T09:22:26-04:00",
"short_url": "https://nyti.ms/2DRY8r7",
"des_facet": [
"Work-Life Balance",
"Leisure",
"Mental Health and Disorders",
"Age, Chronological",
"Happiness"
],
"org_facet": [],
"per_facet": []
},
{
"section": "arts",
"subsection": "design",
"title": "Cracking Codes With Sanford Biggers",
"abstract": "“You don’t have to follow the norms,” says this artist who makes wrenching sculptures transformed by gunfire and radically altered heirloom quilts. A studio visit sheds light on his personal journey.",
"byline": "By Siddhartha Mitter",
"updated_date": "2020-08-15T07:13:11-04:00",
"published_date": "2020-08-14T10:00:12-04:00",
"short_url": "https://nyti.ms/3iKN8dJ",
"des_facet": [
"Art",
"Quilts",
"Sculpture",
"Black People"
],
"org_facet": [
"Bronx Museum of the Arts",
"Moon Medicin (Music Group)"
],
"per_facet": [
"Biggers, Sanford"
]
},
{
"section": "theater",
"subsection": "",
"title": "Taking the Edinburgh Fringe’s Madcap Energy Online",
"abstract": "For the first time in its 73-year history, the hugely influential festival is canceled. Devoted fans and theater makers are finding ways to keep the spirit alive.",
"byline": "By Alice Jones",
"updated_date": "2020-08-15T05:47:31-04:00",
"published_date": "2020-08-14T09:56:22-04:00",
"short_url": "https://nyti.ms/2Y0kqh0",
"des_facet": [
"Comedy and Humor",
"Theater",
"Edinburgh Festival Fringe"
],
"org_facet": [],
"per_facet": []
},
{
"section": "arts",
"subsection": "design",
"title": "A Bouquet of Group Art Shows Near Houston Street",
"abstract": "These expansive exhibitions, in galleries on or near the Lower East Side, create an immersive sense of art and the reawakening art scene.",
"byline": "By Roberta Smith",
"updated_date": "2020-08-15T05:47:31-04:00",
"published_date": "2020-08-13T15:51:12-04:00",
"short_url": "https://nyti.ms/2DR72VF",
"des_facet": [
"Art"
],
"org_facet": [
"Edlin, Andrew, Gallery (Manhattan, NY)",
"Harvey, Steven, Fine Art Projects",
"Karma Gallery (Manhattan, NY)",
"Tibor de Nagy Gallery"
],
"per_facet": []
},
{
"section": "us",
"subsection": "",
"title": "Tackling a Century-Old Mystery: Did My Grandmother Vote?",
"abstract": "Had she, in the throes of segregation and suffrage, cast a hard-won vote? I needed to know.",
"byline": "By Martha S. Jones",
"updated_date": "2020-08-15T05:47:32-04:00",
"published_date": "2020-08-14T05:00:34-04:00",
"short_url": "https://nyti.ms/3kMvXKH",
"des_facet": [
"Voter Registration and Requirements",
"Women's Rights",
"Black People",
"Nineteenth Amendment (US Constitution)",
"Segregation and Desegregation"
],
"org_facet": [
"Bennett College"
],
"per_facet": [
"Jones, Martha S",
"Jones, Susie W",
"Brown, Charlotte Hawkins"
]
},
{
"section": "realestate",
"subsection": "",
"title": "Kingston: A City Remade by the Coronavirus",
"abstract": "A writer who moved upstate for a slower lifestyle fears that the latest wave of migrants, fleeing Covid, will bring their worst instincts with them.",
"byline": "By Sara B. Franklin",
"updated_date": "2020-08-15T05:47:32-04:00",
"published_date": "2020-08-14T06:00:11-04:00",
"short_url": "https://nyti.ms/2PPw7CL",
"des_facet": [
"Real Estate and Housing (Residential)",
"Quarantine (Life and Culture)",
"Coronavirus (2019-nCoV)",
"Race and Ethnicity",
"Gentrification"
],
"org_facet": [],
"per_facet": []
},
{
"section": "science",
"subsection": "",
"title": "How Do You Solve a Moon Mystery? Fire a Laser at It",
"abstract": "Researchers have used reflective prisms left on the moon’s surface for decades, but had increasingly seen problems with their effectiveness.",
"byline": "By Katherine Kornei",
"updated_date": "2020-08-15T05:00:19-04:00",
"published_date": "2020-08-15T05:00:19-04:00",
"short_url": "https://nyti.ms/2Y5s7Tj",
"des_facet": [
"Moon",
"Laser (Light Amplification by Stimulated Emission of Radiation)",
"Apollo Project",
"Research",
"Space and Astronomy",
"Weights and Measures"
],
"org_facet": [
"National Aeronautics and Space Administration",
"Earth, Planets and Space (Journal)"
],
"per_facet": []
},
{
"section": "science",
"subsection": "",
"title": "This Star Looked Like It Would Explode. Maybe It Just Sneezed",
"abstract": "The mysterious dimming of the red supergiant Betelgeuse is the result of a stellar exhalation, astronomers say.",
"byline": "By Dennis Overbye",
"updated_date": "2020-08-14T12:18:48-04:00",
"published_date": "2020-08-14T11:17:09-04:00",
"short_url": "https://nyti.ms/3fRPPIM",
"des_facet": [
"Stars and Galaxies",
"Hubble Space Telescope",
"Telescopes and Observatories",
"Space and Astronomy",
"Research",
"your-feed-science"
],
"org_facet": [
"Astrophysical Journal"
],
"per_facet": []
},
{
"section": "science",
"subsection": "",
"title": "A Honeybee’s Tongue Is More Swiss Army Knife Than Ladle",
"abstract": "Once again, insects prove to be more complicated than scientists thought they were.",
"byline": "By James Gorman",
"updated_date": "2020-08-12T09:25:46-04:00",
"published_date": "2020-08-11T19:01:12-04:00",