-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponseExample.json
More file actions
2987 lines (2987 loc) · 338 KB
/
Copy pathresponseExample.json
File metadata and controls
2987 lines (2987 loc) · 338 KB
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
{
"data": {
"topNewsStream": {
"pagination": {
"requestedCount": 10,
"contentOverrides": {},
"remainingCount": 125,
"uuids": "2f616a47-5abc-49b7-9ead-a30de43430a5:STORY,aaae010d-71a3-414c-a33b-3d60567a2024:STORY,0d685f64-87e8-36c6-a621-bc828a23ecdd:STORY,0ee015b1-8b79-4b24-a993-cd1c7622cb67:STORY,c043a85a-aa17-4dc5-836b-08a467a5c8fb:STORY,dee9eeec-23f4-4e02-ae9e-e1de18ef8286:STORY,1f6a526c-68bc-4f57-9569-6f7c8ca65286:STORY,d7ae8354-de1f-34c5-9c2d-25d1224308a6:STORY,3ad36dc0-ef84-43ac-ad12-e81c74ca9420:STORY,11857caa-94b0-4a2f-90a4-5a42ec95e62c:STORY,71092f96-7698-48a5-adc5-b6ff5bda031b:STORY,2cda4a05-c4d4-4b10-a466-68e2d19373da:STORY,14190e7f-a42b-387b-a108-b9c777ce55b6:STORY,87d3ad23-a146-4f24-b8bb-fb66fa39ac3b:STORY,8ba6b7cb-e4c8-4ca0-bc6e-c9247de6a41d:STORY,79b3cdb8-4ab4-4048-9ce8-c0f11164c9d2:STORY,133cf0a0-04ce-4fb2-9825-ddfd1269962f:STORY,eeeeef17-fcd6-3129-9b28-98d99e7eb511:STORY,f7ba0dde-f345-4815-b4dd-d8223d43dc2b:STORY,d24c63bc-6cac-4084-97dd-8f2d6e70becc:STORY,12235db8-72b4-4957-a0b4-9a9eb192c33e:STORY,626845f4-2b7e-41a6-a860-954f0586aea9:STORY,12afffc5-90c1-3f47-ab5c-3595f8703b6d:STORY,12f5afd0-fa8a-4f9c-bb2b-f3899cf34a11:STORY,eb0128e8-2103-4d24-9453-a7cc4dea5cfc:STORY,288b360e-a789-47ec-a88d-e23ab33a8fb9:STORY,98093699-b38d-46cb-ba0b-91834f4a3b58:STORY,0c86c714-ee53-3fff-82d1-ac0f20ad5e7c:STORY,f76cd2b3-4425-4f14-ac4f-5336ace49449:STORY,58f2cfcd-dd89-4e93-8c93-f04419c85c58:STORY,3543c5b5-abde-4bc4-b35d-e5ff3a8d3177:STORY,c07198e9-ee6e-437b-9995-f66ea9279c3d:STORY,16b5675d-4ccf-333a-9ae9-cefd389147f7:STORY,9c187548-9692-4c16-9c71-ea4522025503:STORY,b9bf875d-83b7-44fa-ad87-c257b70a7904:STORY,97b961f9-8529-4d2d-9bd5-07a2fa3b6b51:STORY,555093db-749a-4642-8764-ceb59895c5fd:STORY,3696bd01-a67d-3988-9faa-26ee565852e4:STORY,3d92b407-fd6d-4c30-a041-a88efb834f8b:STORY,6ccd3849-08cc-4758-b591-67928893c832:STORY,17286e7b-e517-4281-b2b0-641a005fcd7d:STORY,dca5d9cf-3b6f-4ee9-a0cc-9d25a18b40e1:STORY,35db46d6-9a89-3bd5-a040-a74158cdef38:STORY,24e34e80-b4fc-4060-8775-ebaaf992498c:STORY,266142d7-898c-487d-8045-ddb313c86520:STORY,41fcc4b6-fd75-404f-a90c-d8af3081ceb9:STORY,069a9586-145e-4e47-80d8-152adaf5f8a5:STORY,5707227d-b368-3014-bf46-a47b074caa41:STORY,5f79aed2-a020-450c-b178-92029fb16471:STORY,5b655f29-56bc-46ed-ab1f-e4bb0259539f:STORY,82053f8e-6fbe-4a4e-bcf3-7f3e98af6fa8:STORY,a970b409-6644-4786-abb9-d14e17e5b4b1:STORY,f1a79d5d-afa5-383d-aac6-38f3f6a72ea9:STORY,2c9dabc1-a846-45b9-8479-b0d5f7864dd7:STORY,2eee329d-54e9-4405-8afc-0227208c501f:STORY,88374a50-4333-497f-8cdc-056a5754ddb2:STORY,0a0caa18-6951-43cf-8611-492ee824a67e:STORY,a3bf5104-31c0-38af-9770-6e34a5276846:STORY,f5349c02-35cc-4df7-b8eb-ace802f72640:STORY,28147248-c848-4d38-93b2-c2592f6d1970:STORY,180c8b42-0b50-40cd-8704-d613c6f7f0a6:STORY,238d8b95-12ce-4d0f-9578-f1d4918cfa21:STORY,883f4031-5b26-3f8a-bc24-04d1c35f3ae0:STORY,2ad587e4-382a-4247-97cf-6071df822ac4:STORY,843e289e-6884-4855-96aa-607417842b22:STORY,13493ec8-2695-45fb-a7fb-0b5b4fc9c5ae:STORY,426b92c7-55d3-481b-a518-44ae61e34eeb:STORY,11682a21-269b-3ec0-81f8-c89d4c98e7b5:STORY,d6b71c29-8a39-42be-8da4-2927082c33a2:STORY,5142454a-85d4-4ba5-938d-cf80c7ba88b7:STORY,d92147a0-6b08-4f1c-8cd7-3148c40f6203:STORY,50a3aecc-feff-41ef-acf6-c694bd2f2f2a:STORY,2cb0751f-9d33-38e4-a63b-409eac5b81ea:STORY,61d4b30d-297b-4b83-8942-30d8c21ef9da:STORY,0a53a76c-4433-4281-85b5-c78d5c1f3c16:STORY,2efb3795-ec7d-4621-9c62-8484b8a301c0:STORY,a5ba0cbf-f1b3-407c-b497-48b7165e86c0:STORY,e4b69d11-4ba9-3767-a897-5c0b9faaf79c:STORY,13894a8a-d329-440f-9534-f3ff8475d226:STORY,59dc0d89-1bf3-46c0-b552-e837e6332474:STORY,7245cfe0-d9c5-4089-b77c-0b4cc4fc2a2f:STORY,7cce442f-2e38-4203-8f41-b616176a3661:STORY,f5209876-a574-38e4-9202-d01b30752f9c:STORY,56eae3f9-44e5-4597-8a1c-5346dee7c106:STORY,f7713890-4f05-4a41-bc6c-40e21b644726:STORY,6c496bb6-af19-4cf3-98d2-64dd295f0c6c:STORY,d7fa3284-a9cf-47b9-a832-2b53671431d7:STORY,e1e16453-4aaa-342a-97e0-89f1d8e48122:STORY,8666e904-1343-4e03-9dd9-80c1b610659c:STORY,f8d54d5f-a64b-4d83-b169-561139463c88:STORY,ed524222-8569-4249-b690-c681e20ee6ff:STORY,53783cba-c8a4-4865-8269-e9d0f34b7a26:STORY,afd5cfea-f614-3ae3-aa8f-f5537bceb1b8:STORY,8e1fa3c9-ad0b-4e8f-91eb-12b88685960b:STORY,b1bd59ab-d822-425d-b02c-34e59cc32551:STORY,0ab397ee-6888-4260-80ee-42cbf192151f:STORY,3e18c2f2-505a-38bc-a044-ee630c02ef13:STORY,b095b0ae-2119-32a1-a13e-c2f61a2577a3:STORY,5fcd3fb3-a798-3329-971a-1ff2945adefb:STORY,c615beab-eeaf-3446-afd9-dc4cfb3222e3:STORY,0d41fc62-cb8f-3073-b288-652f04b6e97a:STORY,9b3ab73b-2746-3cc5-bc8e-2c1c4c2f7172:STORY,46289c7f-1a2d-38bb-b61f-5da18b7852bd:STORY,2eee65fc-8f67-3c74-8c60-99cbbca3531f:STORY,696ee702-8ff4-33dd-9928-eabf033ffc8d:STORY,59332d52-a4ed-366d-91e3-92fe53964d0f:STORY,a2cf09f6-30e0-3488-a4aa-7d73d7fd8c00:STORY,c2b17ab8-2184-3ea4-9735-6f5eb0c5683c:STORY,873aae73-4824-3e49-a0fc-14a4e680e81e:STORY,6d5b073f-6f9e-39ef-87ee-e12169e82026:STORY,0bafee16-4ae7-37bd-bf78-5d2cd8941882:STORY,984943f8-2154-3714-a61d-69eefada0ec6:STORY,add51d80-2e1c-3d25-ab1d-8fb5dd3295c2:STORY,a43eea43-4dea-37ab-bd2a-2596ffc733cf:STORY,48e58026-0381-30de-8e00-05fee51ee675:STORY,b0ba804d-be40-3f60-ba0f-0b3c9ffa7bee:STORY,164595c2-0565-3b26-896d-7b4e2d64cf94:STORY,f1822a9c-d9b8-3db5-95aa-2562c0fa82c7:STORY,011915a3-01d8-3444-a8b2-1b21ef805a7f:STORY,10d22fe4-ccff-34cb-91dd-778ec972cb05:STORY,59e436a3-3329-3096-8091-ece5e33c69d6:STORY,782d9a1d-046d-376e-afc4-c630d71c302c:STORY,e0d99a79-c645-306a-afbb-9b0d186b8abd:STORY,16b61723-eb17-307a-9fc6-4b7db8e09b44:STORY,ea9bbfc8-c62f-311b-907c-933c44429d54:STORY"
},
"stream": [
{
"id": "caad1e5a-5e70-4909-a194-9e1b8c61c577",
"type": "CONTENT",
"content": {
"title": "AJ Simon, Albany defensive standout and NFL draft prospect, dies at 25",
"pubDate": "2024-04-19T16:39:52Z",
"displayTime": "2024-04-19T16:39:52Z",
"subheadline": "Simon had visited with the Patriots ahead of next week's NFL draft.",
"isOpinion": false,
"presentation": null,
"liveBlogStatus": null,
"heroModule": {
"darkBackground": false,
"headlinePosition": "above",
"type": "standard"
},
"commentsAllowed": true,
"contentType": "STORY",
"isHosted": true,
"ampUrl": "",
"structuredSummary": {
"summaries": [
{
"type": "text",
"value": "Former University at Albany defensive lineman and 2024 NFL draft prospect Amitral \"AJ\" Simon has died at the age of 25, the school announced on Wednesday."
},
{
"type": "text",
"value": "\"The UAlbany football program was deeply saddened to learn of the passing of former student-athlete Amitral 'AJ' Simon this morning,\" Albany said in a statement."
}
],
"source": "cap"
},
"provider": {
"url": "https://sports.yahoo.com/",
"displayName": "Yahoo Sports",
"logo": {
"type": "logo",
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"originalHeight": 400,
"originalWidth": 400,
"resolutions": [
{
"tag": "original",
"url": "https://s.yimg.com/uu/api/res/1.2/2lVDVggwaje9HT.QojjqWA--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 400,
"height": 400
},
{
"tag": "100x50",
"url": "https://s.yimg.com/uu/api/res/1.2/OfyjfiwFG_W4Dqwyad2vcw--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 100,
"height": 50
}
]
},
"lightLogo": {
"originalHeight": 100,
"originalWidth": 469,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"type": "lightlogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/F1BfKNybxRwKZSbWsVVdAw--~B/aD0xMDA7dz00Njk7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "original",
"height": 100,
"width": 469
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/tv97T9BRLtnTtOL3dBusIQ--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "100x50",
"height": 50,
"width": 100
}
]
},
"darkLogo": {
"originalHeight": 100,
"originalWidth": 513,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"type": "darklogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/L5r8ccvvGTp4fcoafLKCAg--~B/aD0xMDA7dz01MTM7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "original",
"height": 100,
"width": 513
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/8ivOqKUcScynOSokmb5x4g--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "100x50",
"height": 50,
"width": 100
}
]
}
},
"previewUrl": null,
"providerContentUrl": "",
"canonicalUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/aj-simon-albany-defensive-standout-and-nfl-draft-prospect-dies-at-25-163952849.html"
},
"clickThroughUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/aj-simon-albany-defensive-standout-and-nfl-draft-prospect-dies-at-25-163952849.html"
},
"author": {
"image": {
"originalHeight": 400,
"originalWidth": 400,
"originalUrl": "https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1",
"resolutions": [
{
"height": 400,
"tag": "original",
"width": 400,
"url": "https://s.yimg.com/uu/api/res/1.2/6XWdpYVE.C50nmLO4bqOQw--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1"
},
{
"height": 400,
"tag": "400x400",
"width": 400,
"url": "https://s.yimg.com/uu/api/res/1.2/0QyerpBDyvCMdBXsd.6aEQ--~B/Zmk9ZmlsbDtoPTQwMDtweW9mZj0wO3c9NDAwO2FwcGlkPXl0YWNoeW9u/https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1"
}
]
},
"byline": "Contributing writer",
"description": "",
"displayName": "Sean Leahy"
},
"authors": [
{
"author": {
"image": {
"originalHeight": 400,
"originalWidth": 400,
"originalUrl": "https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1",
"resolutions": [
{
"height": 400,
"tag": "original",
"width": 400,
"url": "https://s.yimg.com/uu/api/res/1.2/6XWdpYVE.C50nmLO4bqOQw--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1"
},
{
"height": 400,
"tag": "400x400",
"width": 400,
"url": "https://s.yimg.com/uu/api/res/1.2/0QyerpBDyvCMdBXsd.6aEQ--~B/Zmk9ZmlsbDtoPTQwMDtweW9mZj0wO3c9NDAwO2FwcGlkPXl0YWNoeW9u/https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1"
}
]
},
"byline": "Contributing writer",
"description": "",
"displayName": "Sean Leahy"
}
}
],
"thumbnail": {
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"originalWidth": 5378,
"originalHeight": 3586,
"resolutions": [
{
"height": 3586,
"tag": "original",
"width": 5378,
"url": "https://s.yimg.com/uu/api/res/1.2/HNB.LVND9zhkJibnypKV4Q--~B/aD0zNTg2O3c9NTM3ODthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75"
},
{
"height": 500,
"tag": "750",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/GPPAfz43N76.02l.ZxOZ_A--~B/Zmk9ZmlsbDtoPTUwMDt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75"
},
{
"height": 240,
"tag": "320x240",
"width": 320,
"url": "https://s.yimg.com/uu/api/res/1.2/eZW.tJigl9hvxe5dlG9h6A--~B/Zmk9ZmlsbDtoPTI0MDtweW9mZj0wO3c9MzIwO2FwcGlkPXl0YWNoeW9u/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75"
},
{
"height": 500,
"tag": "750x",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/GPPAfz43N76.02l.ZxOZ_A--~B/Zmk9ZmlsbDtoPTUwMDt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75"
}
]
},
"adMeta": {
"siteAttribute": "wiki_topics=\"University_at_Albany,_SUNY;National_Football_League;Greg_Gattuso;2024_NFL_draft;Lineman_%28gridiron_football%29\" ctopid=\"2074500;2078500;2096000;2212000;2253000\" hashtag=\"news;2074500;2078500;2096000;2212000;2253000\" rs=\"lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:caad1e5a-5e70-4909-a194-9e1b8c61c577;pct:story\"",
"site": null,
"spaceId": "954012750"
},
"canvass": {
"contextId": "caad1e5a-5e70-4909-a194-9e1b8c61c577",
"count": 0
},
"readingMeta": {
"wpm200": 90
},
"readMoreList": "",
"body": {
"modules": {},
"data": {
"partnerData": {
"adMeta": {
"hashtag": "news;football;sports",
"isSupplySegment": "false",
"lang": "en-US",
"region": "US",
"rs": "lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:caad1e5a-5e70-4909-a194-9e1b8c61c577;pct:story",
"site_attribute": "wiki_topics=\"University_at_Albany,_SUNY;National_Football_League;Greg_Gattuso;2024_NFL_draft;Lineman_%28gridiron_football%29\" ctopid=\"2074500;2078500;2096000;2212000;2253000\" hashtag=\"news;2074500;2078500;2096000;2212000;2253000\" rs=\"lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:caad1e5a-5e70-4909-a194-9e1b8c61c577;lu:0;pct:story\"",
"spaceid": "954012750",
"site": "sports",
"enabled": true,
"pos": "LREC",
"showBodyAds": true,
"showPhotoAds": false
},
"contentType": "story",
"cover": {
"image": {
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"originalHeight": 3586,
"originalWidth": 5378,
"resolutions": [
{
"height": 859,
"url": "https://s.yimg.com/ny/api/res/1.2/Etpw3.lp7ijOmhds3Kem8w--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTg1OTt3PTE2NDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 1640,
"tag": "fit-width-1640"
},
{
"height": 674,
"url": "https://s.yimg.com/ny/api/res/1.2/Inb1c.7MwKu8oa.gLWHAgw--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTY3NDt3PTEyMDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 1200,
"tag": "fit-width-1200"
},
{
"height": 1200,
"url": "https://s.yimg.com/ny/api/res/1.2/5J8swUbBWtn3whoz6e5ZWA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9MTIwMDt3PTEyMDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 1200,
"tag": "square-1200"
},
{
"height": 461,
"url": "https://s.yimg.com/ny/api/res/1.2/iLlVPwK2cZ.X5s35H1LXSA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTQ2MTt3PTgyMA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 820,
"tag": "fit-width-820"
},
{
"height": 360,
"url": "https://s.yimg.com/ny/api/res/1.2/VIv.ANKBAwrEGlj4fj_Hhw--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTM2MDt3PTY0MA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 640,
"tag": "fit-width-640"
},
{
"height": 820,
"url": "https://s.yimg.com/ny/api/res/1.2/ghU.xOSo7F6YU2BTVLk_jg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9ODIwO3c9ODIw/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 820,
"tag": "square-820"
},
{
"height": 280,
"url": "https://s.yimg.com/ny/api/res/1.2/VkfIqumG5tIfZXe8TV6K9A--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTI4MDt3PTI4MA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 280,
"tag": "square-280"
},
{
"height": 224,
"url": "https://s.yimg.com/ny/api/res/1.2/7t4VvhsxZ3geSt8pCIekdg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTIyNDt3PTMwMA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 300,
"tag": "fit-width-300"
},
{
"url": "https://s.yimg.com/ny/api/res/1.2/C0W1hAxVFhXFzP7z98Gjiw--/YXBwaWQ9aGlnaGxhbmRlcjt3PTE2NDA7aD0xMDk0/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 1640,
"height": 1094,
"tag": "max-width-1640"
},
{
"height": 3586,
"url": "https://s.yimg.com/ny/api/res/1.2/.yjrDKZdfMDKyzIOGzyDAw--/YXBwaWQ9aGlnaGxhbmRlcjtoPTM1ODY7dz01Mzc4/https://s.yimg.com/os/creatr-uploaded-images/2024-04/e62ecf80-fe6a-11ee-bf5e-5b9119753b75",
"width": 5378,
"tag": "original"
}
]
}
},
"hasScribble": false,
"hostedType": "hosted",
"lastModifiedTime": "",
"spaceId": "954012750",
"tpConsent": true,
"type": "story",
"url": "https://sports.yahoo.com/aj-simon-albany-defensive-standout-and-nfl-draft-prospect-dies-at-25-163952849.html",
"uuid": "caad1e5a-5e70-4909-a194-9e1b8c61c577"
}
},
"markup": "<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content=\"width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=no\"><link rel=preconnect href=https://s.yimg.com><link rel=preconnect href=https://geo.query.yahoo.com><link rel=preconnect href=https://csc.beap.bc.yahoo.com><link rel=preconnect href=https://beap.gemini.yahoo.com><link rel=preconnect href=https://yep.video.yahoo.com><link rel=preconnect href=https://video-api.yql.yahoo.com><link rel=preconnect href=https://yrtas.btrll.com><link rel=preconnect href=https://shim.btrll.com><link href=https://s.yimg.com/aaq/c/987679d.caas-sports_app_android.min.css rel=stylesheet type=text/css><meta http-equiv=x-dns-prefetch-control content=on></head><body class=\"_CAAS_SYSTEM_THEME_OFF_PLACEHOLDER_ _CAAS_THEME_PLACEHOLDER_\"><div id=caas-articles-container class=caas-wrapper><div class=\"caas caas-cc ncp sports caas-ynet\" data-device=smartphone data-i18n='{\"{date} at {time}\":\"{date} at {time}\",\"{0} hr ago\":\"{0} hr ago\",\"{0} min ago\":\"{0} min ago\",\"{0} mins ago\":\"{0} mins ago\",\"{0} Views\":\"{0} Views\",\"INLINE_CONSENT_BLOCKED_3P_BUTTON_ALLOW\":\"Allow\",\"LESS\":\"Less\",\"LIVE_IS_OVER\":\"LIVE COVERAGE IS OVER\",\"LOADING\":\"Loading\",\"MORE\":\"More\",\"NEW_UPDATE\":\"new update\",\"NEW_UPDATES\":\"new updates\",\"JUST_NOW\":\"Just now\",\"RELOAD\":\"Click to reload with latest update\",\"SEE {0} MORE\":\"See {0} more\",\"SEE_LESS\":\"See less\",\"SEE_MORE\":\"See more\",\"SHOW_MORE\":\"Show more updates\",\"TODAY\":\"Today\",\"TRY_AGAIN\":\"Something went wrong. Try again\",\"UPDATE\":\"update\",\"UPDATES\":\"updates\",\"VIDEO_A11Y_DISABLE_FULLSCREEN\":\"Full Screen, button, disabled, temporarily not available for screen reader users\"}' data-lang=en-US data-tz=America/New_York data-params='{\"features\":{\"ncp\":true},\"config\":{\"authorBylineCollapseLineCount\":2,\"commerceQuickOverviewLimit\":5,\"freezeOnLinkClick\":false,\"lazyOffsetY\":900,\"livecoverage\":{\"defer\":false},\"imageCaptionCollapseLineCount\":3,\"slideshowCaptionCollapseLineCount\":2,\"uiShowPreviousButtonOnLoad\":false,\"prestigeScrollMarginTop\":-72}}' id=caas-art-caad1e5a-5e70-4909-a194-9e1b8c61c577><article role=article tabindex=-1><script class=caas-yvideo-config type=application/ld+json>\n {}\n </script><script class=caas-timezone-config type=application/ld+json>\n {\"longForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"shortForm\":{\"day\":\"numeric\",\"month\":\"long\",\"year\":\"numeric\"},\"postDateLongForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"postDateShortForm\":{\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"timeZoneName\":\"short\"}}\n </script><script class=caas-embedded-config type=application/ld+json>\n {\"twitter\":{\"timeout\":5000}}\n </script><div class=caas-body><p>Former University at Albany defensive lineman and 2024 NFL draft prospect Amitral "AJ" Simon has died at the age of 25, the school announced on Wednesday.</p><div class=twitter-tweet-wrapper data-embed-anchor=1060b877-1e53-56d8-9e0d-9da8e8181d6b><blockquote placeholder data-theme=light class=twitter-tweet><div class=\"caas-card-loader small fixed-height\"></div><p>We love you, 8 \uD83D\uDC9C <a href=\"https://t.co/OhpBlPXvmr\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:pic.twitter.com/OhpBlPXvmr;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">pic.twitter.com/OhpBlPXvmr</a></p><p>— UAlbany Football (@UAlbanyFootball) <a href=\"https://twitter.com/UAlbanyFootball/status/1780690681704452462?ref_src=twsrc%5Etfw\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:April 17, 2024;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">April 17, 2024</a></p></blockquote></div><div class=caas-da><div id=defaultLREC><div class=caas-da-loader><i></i></div></div></div><div class=\"caas-pull-quote-wrapper caas-img caas-lazy\" data-src><blockquote class=caas-blockquote><p>"The UAlbany football program was deeply saddened to learn of the passing of former student-athlete Amitral 'AJ' Simon this morning," Albany said in a statement. "AJ was a tremendous young man and even better teammate throughout his time at UAlbany. He was a role model both on and off the field, serving as a pillar to this program over the last two years. He will be profoundly missed.”</p></blockquote></div><p>A cause of death was not announced.</p><div class=\"caas-pull-quote-wrapper caas-img caas-lazy\" data-src><blockquote class=caas-blockquote><p>"Two joyous year coaching and becoming friends with AJ Simon," Albany head coach <a data-i13n=\"cpos:1;pos:1\" href=\"https://twitter.com/CoachGGattuso\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:Greg Gattuso posted on X;cpos:1;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">Greg Gattuso posted on X</a>. "My prayers are dedicated to the Simon family. I love you AJ and will always have a special place in my heart."</p></blockquote></div><div id=caas-article-upsell class=\"caas-placeholder-upsell caas-upsell-container wafer-fetch\" data-wf-replace=1 data-wf-state-body='{\"ctrl\":\"SubscriptionMonalixa\",\"m_id\":\"react-wafer-subscription\",\"m_mode\":\"json\",\"module\":\"monalixaRightRail\",\"config\":{\"apiVersion\":\"2\",\"pageContext\":\"[state.publisherBlobPageContext]\",\"appid\":\"1b552308-2ab7-4066-a308-65e488e6e306\",\"containerselector\":\"#sports-mobile-web-article-body\",\"placement\":\"sports-mobile-web-article-body\"}}' data-wf-retry-count=2 data-wf-timeout=5000 data-wf-trigger=viewport data-wf-trigger-offset=\"600 0\" data-wf-url=/fp_ms/_rcv/remote?m_id=react-wafer-subscription&ctrl=SubscriptionMonalixa&module=monalixaRightRail&site=sports&device=smartphone&lang=en-US®ion=US&m_mode=json></div><p>Simon played two seasons at Albany and declared for the 2024 NFL draft in December. He was ranked as the <a data-i13n=\"cpos:2;pos:1\" href=\"https://www.espn.com/nfl/draft2024/insider/story/_/id/38756784/2024-nfl-draft-rankings-top-prospects-positional-matt-miller#400\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:448th prospect by ESPN;cpos:2;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">448th prospect by ESPN</a> after a season that saw him earn first-team All-CAA honors. In 15 games, he recorded 55 tackles and 12.5 sacks while helping the Great Danes to an 11-4 record and their first-ever conference title.</p><p>According to <a data-i13n=\"cpos:3;pos:1\" href=\"https://sports.yahoo.com/albany-edge-rusher-aj-simon-205522099.html?webview=1\" data-ylk=\"slk:NBC;cpos:3;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">NBC</a>, Simon had a pre-draft visit with the New England Patriots last week.</p><p>Off the field, Simon made the CAA's Commissioner’s Academic Honor Roll, which requires students to keep at least a 3.0 grade-point average.</p></div></article></div></div><script src=https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.js></script><script>ES6Promise.polyfill()</script><script src=https://s.yimg.com/aaq/c/92556e0.caas-sports_app_android.min.js></script></body></html>",
"schema": {}
}
}
},
{
"id": "9b51532a-cb39-4fd3-afcb-2803b7b3de59",
"type": "CONTENT",
"content": {
"title": "NBA Playoffs: Who will meet in the Finals? Who has the most at stake this postseason? We break it all down.",
"pubDate": "2024-04-19T16:30:32Z",
"displayTime": "2024-04-19T16:30:32Z",
"subheadline": "",
"isOpinion": false,
"presentation": "prestige",
"liveBlogStatus": null,
"heroModule": {
"darkBackground": false,
"headlinePosition": "below",
"type": "standard"
},
"commentsAllowed": true,
"contentType": "STORY",
"isHosted": true,
"ampUrl": "",
"structuredSummary": {
"summaries": [
{
"type": "text",
"value": "Who are the biggest threats to the Celtics and Nuggets meeting in the Finals?"
},
{
"type": "text",
"value": "1. Who is the biggest threat to the Celtics in the East?"
},
{
"type": "text",
"value": "The Knicks may not have anything left if they beat the Sixers, who can’t be trusted to make it past the second week of May anyways."
}
],
"source": "cap"
},
"provider": {
"url": "https://sports.yahoo.com/",
"displayName": "Yahoo Sports",
"logo": {
"type": "logo",
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"originalHeight": 400,
"originalWidth": 400,
"resolutions": [
{
"tag": "original",
"url": "https://s.yimg.com/uu/api/res/1.2/2lVDVggwaje9HT.QojjqWA--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 400,
"height": 400
},
{
"tag": "100x50",
"url": "https://s.yimg.com/uu/api/res/1.2/OfyjfiwFG_W4Dqwyad2vcw--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 100,
"height": 50
}
]
},
"lightLogo": {
"originalHeight": 100,
"originalWidth": 469,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"type": "lightlogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/F1BfKNybxRwKZSbWsVVdAw--~B/aD0xMDA7dz00Njk7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "original",
"height": 100,
"width": 469
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/tv97T9BRLtnTtOL3dBusIQ--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "100x50",
"height": 50,
"width": 100
}
]
},
"darkLogo": {
"originalHeight": 100,
"originalWidth": 513,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"type": "darklogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/L5r8ccvvGTp4fcoafLKCAg--~B/aD0xMDA7dz01MTM7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "original",
"height": 100,
"width": 513
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/8ivOqKUcScynOSokmb5x4g--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "100x50",
"height": 50,
"width": 100
}
]
}
},
"previewUrl": null,
"providerContentUrl": "",
"canonicalUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/nba-playoffs-who-will-meet-in-the-finals-who-has-the-most-at-stake-this-postseason-we-break-it-all-down-163032510.html"
},
"clickThroughUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/nba-playoffs-who-will-meet-in-the-finals-who-has-the-most-at-stake-this-postseason-we-break-it-all-down-163032510.html"
},
"author": {
"image": null,
"byline": "",
"description": "",
"displayName": "Yahoo Sports Staff"
},
"authors": [
{
"author": {
"image": null,
"byline": "",
"description": "",
"displayName": "Yahoo Sports Staff"
}
}
],
"thumbnail": {
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2024-04/492728d0-fe61-11ee-bfff-b78a301788f1",
"originalWidth": 2440,
"originalHeight": 1373,
"resolutions": [
{
"height": 1373,
"tag": "original",
"width": 2440,
"url": "https://s.yimg.com/uu/api/res/1.2/KNF31nI08BofHIUnlqhSrQ--~B/aD0xMzczO3c9MjQ0MDthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/492728d0-fe61-11ee-bfff-b78a301788f1"
},
{
"height": 422,
"tag": "750",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/3wiOvFRCPbgHvOTjg_WMug--~B/Zmk9ZmlsbDtoPTQyMjt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/492728d0-fe61-11ee-bfff-b78a301788f1"
},
{
"height": 240,
"tag": "320x240",
"width": 320,
"url": "https://s.yimg.com/uu/api/res/1.2/VX04OKMCeHbYT65T.myhLw--~B/Zmk9ZmlsbDtoPTI0MDtweW9mZj0wO3c9MzIwO2FwcGlkPXl0YWNoeW9u/https://s.yimg.com/os/creatr-uploaded-images/2024-04/492728d0-fe61-11ee-bfff-b78a301788f1"
},
{
"height": 422,
"tag": "750x",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/3wiOvFRCPbgHvOTjg_WMug--~B/Zmk9ZmlsbDtoPTQyMjt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/492728d0-fe61-11ee-bfff-b78a301788f1"
}
]
},
"adMeta": {
"siteAttribute": "wiki_topics=\"NBA_playoffs;Dan_Devine;Philadelphia_76ers;Joel_Embiid;Jalen_Brunson;Denver_Nuggets;The_Bucks;Boston;Boston_Celtics;Nikola_Joki%c4%87;New_York_Knicks;Doc_Rivers;Mitchell_Robinson;Giannis_Antetokounmpo;Anthony_Edwards_%28basketball%29;Joe_Mazzulla;Michael_Jordan;NBA_Finals;Donovan_Mitchell;Kawhi_Leonard;Eastern_Conference_%28NBA%29;Kevin_Durant;Minnesota_Timberwolves;Paolo_Banchero;Devin_Booker;Isaiah_Hartenstein\" ctopid=\"2074500;2078500;2080500;2212000;2231500\" hashtag=\"news;2074500;2078500;2080500;2212000;2231500\" rs=\"lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:9b51532a-cb39-4fd3-afcb-2803b7b3de59;pct:story\"",
"site": null,
"spaceId": "954012695"
},
"canvass": {
"contextId": "9b51532a-cb39-4fd3-afcb-2803b7b3de59",
"count": 0
},
"readingMeta": {
"wpm200": 853
},
"readMoreList": "",
"body": {
"modules": {},
"data": {
"partnerData": {
"adMeta": {
"hashtag": "news;nba;basketball;sports",
"isSupplySegment": "false",
"lang": "en-US",
"region": "US",
"rs": "lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:9b51532a-cb39-4fd3-afcb-2803b7b3de59;pct:story",
"site_attribute": "wiki_topics=\"NBA_playoffs;Dan_Devine;Philadelphia_76ers;Joel_Embiid;Jalen_Brunson;Denver_Nuggets;The_Bucks;Boston;Boston_Celtics;Nikola_Joki%c4%87;New_York_Knicks;Doc_Rivers;Mitchell_Robinson;Giannis_Antetokounmpo;Anthony_Edwards_%28basketball%29;Joe_Mazzulla;Michael_Jordan;NBA_Finals;Donovan_Mitchell;Kawhi_Leonard;Eastern_Conference_%28NBA%29;Kevin_Durant;Minnesota_Timberwolves;Paolo_Banchero;Devin_Booker;Isaiah_Hartenstein\" ctopid=\"2074500;2078500;2080500;2212000;2231500\" hashtag=\"news;2074500;2078500;2080500;2212000;2231500\" rs=\"lmsid:a077000000DAfMuAAL;revsp:us.sports.yahoo.com;lpstaid:9b51532a-cb39-4fd3-afcb-2803b7b3de59;lu:0;pct:story\"",
"spaceid": "954012695",
"site": "sports",
"enabled": true,
"pos": "LREC",
"showBodyAds": true,
"showPhotoAds": false
},
"contentType": "story",
"cover": {
"image": {
"caption": "(Henry Russell/Yahoo Sports Illustration)",
"credit": "",
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"originalHeight": 1470,
"originalWidth": 2400,
"resolutions": [
{
"height": 859,
"url": "https://s.yimg.com/ny/api/res/1.2/wIzG.mG.GRyPwEWNgvykEA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTg1OTt3PTE2NDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 1640,
"tag": "fit-width-1640"
},
{
"height": 674,
"url": "https://s.yimg.com/ny/api/res/1.2/tqQ05bdFVyNgkSWQT9_IgA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTY3NDt3PTEyMDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 1200,
"tag": "fit-width-1200"
},
{
"height": 1200,
"url": "https://s.yimg.com/ny/api/res/1.2/vHvkivwZ4D2uKB69BpuJEg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9MTIwMDt3PTEyMDA-/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 1200,
"tag": "square-1200"
},
{
"height": 461,
"url": "https://s.yimg.com/ny/api/res/1.2/mbPj_qncVaaqGdPjhRPpmQ--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTQ2MTt3PTgyMA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 820,
"tag": "fit-width-820"
},
{
"height": 360,
"url": "https://s.yimg.com/ny/api/res/1.2/f6qawDl_x8fAqr3I2AQc3w--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTM2MDt3PTY0MA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 640,
"tag": "fit-width-640"
},
{
"height": 820,
"url": "https://s.yimg.com/ny/api/res/1.2/FzF6ZrxZngg1SrNtgzzUbA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9ODIwO3c9ODIw/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 820,
"tag": "square-820"
},
{
"height": 280,
"url": "https://s.yimg.com/ny/api/res/1.2/6N1UvaOOzKxFo83Pj_6w0Q--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTI4MDt3PTI4MA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 280,
"tag": "square-280"
},
{
"height": 224,
"url": "https://s.yimg.com/ny/api/res/1.2/4q5tzzA5RETRg4ejN_at9Q--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTIyNDt3PTMwMA--/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 300,
"tag": "fit-width-300"
},
{
"url": "https://s.yimg.com/ny/api/res/1.2/07A6Ht6QEsLh19zJY.5N1g--/YXBwaWQ9aGlnaGxhbmRlcjt3PTE2NDA7aD0xMDA1/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 1640,
"height": 1005,
"tag": "max-width-1640"
},
{
"height": 1470,
"url": "https://s.yimg.com/ny/api/res/1.2/N0vN7ZoS1WaY182T4EPyOQ--/YXBwaWQ9aGlnaGxhbmRlcjtoPTE0NzA7dz0yNDAw/https://s.yimg.com/os/creatr-uploaded-images/2024-04/444cecd0-fe68-11ee-8fdf-74afa7310c8b",
"width": 2400,
"tag": "original"
}
]
}
},
"hasScribble": false,
"hostedType": "hosted",
"lastModifiedTime": "",
"spaceId": "954012695",
"tpConsent": true,
"type": "story",
"url": "https://sports.yahoo.com/nba-playoffs-who-will-meet-in-the-finals-who-has-the-most-at-stake-this-postseason-we-break-it-all-down-163032510.html",
"uuid": "9b51532a-cb39-4fd3-afcb-2803b7b3de59",
"video_enrichment": {}
}
},
"markup": "<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content=\"width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=no\"><link rel=preconnect href=https://s.yimg.com><link rel=preconnect href=https://geo.query.yahoo.com><link rel=preconnect href=https://csc.beap.bc.yahoo.com><link rel=preconnect href=https://beap.gemini.yahoo.com><link rel=preconnect href=https://yep.video.yahoo.com><link rel=preconnect href=https://video-api.yql.yahoo.com><link rel=preconnect href=https://yrtas.btrll.com><link rel=preconnect href=https://shim.btrll.com><link href=https://s.yimg.com/aaq/c/987679d.caas-sports_app_android.min.css rel=stylesheet type=text/css><meta http-equiv=x-dns-prefetch-control content=on></head><body class=\"_CAAS_SYSTEM_THEME_OFF_PLACEHOLDER_ _CAAS_THEME_PLACEHOLDER_\"><div id=caas-articles-container class=caas-wrapper><div class=\"caas caas-cc ncp sports caas-ynet\" data-device=smartphone data-i18n='{\"{date} at {time}\":\"{date} at {time}\",\"{0} hr ago\":\"{0} hr ago\",\"{0} min ago\":\"{0} min ago\",\"{0} mins ago\":\"{0} mins ago\",\"{0} Views\":\"{0} Views\",\"INLINE_CONSENT_BLOCKED_3P_BUTTON_ALLOW\":\"Allow\",\"LESS\":\"Less\",\"LIVE_IS_OVER\":\"LIVE COVERAGE IS OVER\",\"LOADING\":\"Loading\",\"MORE\":\"More\",\"NEW_UPDATE\":\"new update\",\"NEW_UPDATES\":\"new updates\",\"JUST_NOW\":\"Just now\",\"RELOAD\":\"Click to reload with latest update\",\"SEE {0} MORE\":\"See {0} more\",\"SEE_LESS\":\"See less\",\"SEE_MORE\":\"See more\",\"SHOW_MORE\":\"Show more updates\",\"TODAY\":\"Today\",\"TRY_AGAIN\":\"Something went wrong. Try again\",\"UPDATE\":\"update\",\"UPDATES\":\"updates\",\"VIDEO_A11Y_DISABLE_FULLSCREEN\":\"Full Screen, button, disabled, temporarily not available for screen reader users\"}' data-lang=en-US data-tz=America/New_York data-params='{\"features\":{\"ncp\":true},\"config\":{\"authorBylineCollapseLineCount\":2,\"commerceQuickOverviewLimit\":5,\"freezeOnLinkClick\":false,\"lazyOffsetY\":900,\"livecoverage\":{\"defer\":false},\"imageCaptionCollapseLineCount\":3,\"slideshowCaptionCollapseLineCount\":2,\"uiShowPreviousButtonOnLoad\":false,\"prestigeScrollMarginTop\":-72}}' id=caas-art-9b51532a-cb39-4fd3-afcb-2803b7b3de59><article role=article tabindex=-1><script class=caas-yvideo-config type=application/ld+json>\n {}\n </script><script class=caas-timezone-config type=application/ld+json>\n {\"longForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"shortForm\":{\"day\":\"numeric\",\"month\":\"long\",\"year\":\"numeric\"},\"postDateLongForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"postDateShortForm\":{\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"timeZoneName\":\"short\"}}\n </script><script class=caas-embedded-config type=application/ld+json>\n {\"twitter\":{\"timeout\":5000}}\n </script><div class=caas-body><p>We're breaking down the biggest questions in the <a data-i13n=\"cpos:1;pos:1\" href=\"https://sports.yahoo.com/2024-nba-playoffs-matchups-schedules-play-in-games-and-storylines-to-watch-180045686.html?webview=1\" data-ylk=\"slk:NBA playoffs;cpos:1;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">NBA playoffs</a>. Who are the biggest threats to the Celtics and Nuggets meeting in the Finals? Who has the most at stake this postseason? Which player will capture our attention?</p><p>Our writers weigh in on what they'll be watching this postseason and make their picks for every first-round series (and the Finals). Enjoy!</p><hr><div class=caas-da><div id=defaultLREC><div class=caas-da-loader><i></i></div></div></div><h2>1. Who is the biggest threat to the Celtics in the East?</h2><p><strong>Vincent Goodwill: </strong>It’s still the Bucks, despite their combustible ways. The Knicks may not have anything left if they beat the Sixers, who can’t be trusted to make it past the second week of May anyways. The Bucks can’t be trusted, either. They could lose in the first round, or magically discover they have two premier playoff destroyers, if they are healthy and right.</p><p><strong>Jake Fischer:</strong> The Knicks. They’re the two-seed for a reason, and New York boasts the talent, depth and defensive stable to combat Boston’s vaunted top-six. Any team upending the Celtics would mark a true upset. And yet the Knicks, if healthy, have the frontcourt optionality between Isaiah Hartenstein and Mitchell Robinson, plus the perimeter peskiness of Donte DiVincenzo, Josh Hart and OG Anunoby, for starters, for Jalen Brunson to lead as strong an upset bid as possible.</p><div id=caas-article-upsell class=\"caas-placeholder-upsell caas-upsell-container wafer-fetch\" data-wf-replace=1 data-wf-state-body='{\"ctrl\":\"SubscriptionMonalixa\",\"m_id\":\"react-wafer-subscription\",\"m_mode\":\"json\",\"module\":\"monalixaRightRail\",\"config\":{\"apiVersion\":\"2\",\"pageContext\":\"[state.publisherBlobPageContext]\",\"appid\":\"1b552308-2ab7-4066-a308-65e488e6e306\",\"containerselector\":\"#sports-mobile-web-article-body\",\"placement\":\"sports-mobile-web-article-body\"}}' data-wf-retry-count=2 data-wf-timeout=5000 data-wf-trigger=viewport data-wf-trigger-offset=\"600 0\" data-wf-url=/fp_ms/_rcv/remote?m_id=react-wafer-subscription&ctrl=SubscriptionMonalixa&module=monalixaRightRail&site=sports&device=smartphone&lang=en-US®ion=US&m_mode=json></div><p><strong>Dan Devine:</strong> It’s cheating to say “the Celtics,” right? (Crunch-time-offense-in-the-playoffs allegations are a “guilty until proven innocent” type of situation.) Then I’ll go with the winner of Knicks-76ers. If it’s New York, we’ll have seen Jalen Brunson and Co. topple a healthy MVP; if it’s Philly, that probably means Joel Embiid has just turned in the best performance of his playoff career. Either way: a tough out.</p><p><strong>Dan Titus:</strong> The Sixers. Unless Joe Mazzulla continuously draws up Iso-Tatum plays in the clutch, the Sixers pose the biggest threat to Boston. It'll take a couple of rounds to come to fruition, but Philly has enough wing depth to <a data-i13n=\"cpos:2;pos:1\" href=\"https://www.statmuse.com/nba/ask/what-was-jaylen-brown-and-jayson-tatums-three-point-percentage-against-the-sixers-this-season\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:disrupt;cpos:2;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">disrupt</a> Boston's three-point barrage. Nick Nurse isn't Doc Rivers, and despite getting bounced three times over the last six years by Boston, the Sixers will be battle-tested and ready for war by the time they meet in the Eastern Conference finals.</p><p><strong>Ben Rohrbach:</strong> The Bucks. As much<a data-i13n=\"cpos:3;pos:1\" href=\"https://sports.yahoo.com/the-bucks-have-endured-a-season-from-hell-is-there-hope-for-better-days-ahead-183603762.html?webview=1\" data-ylk=\"slk:turmoil;cpos:3;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\"> turmoil</a> that has swirled around the Bucks, they are still the biggest threat to the Celtics — when healthy. Without Giannis Antetokounmpo, Milwaukee could lose its first-round series, and the same can be said of every team but Boston in the East, including the 76ers, who have similar concerns about Joel Embiid. In fact, the Celtics, the version that malfunctions in the clutch, may be their own biggest threat.</p><div class=\"caas-iframe fixed-height iframe\" style=height:220px; data-type=iframe data-embed-anchor=45a6b67d-43a1-5f85-9433-f45b939c9ab6><blockquote data-src=https://art19.com/shows/492879e0-37f8-45f6-8a18-f6a441f6c9bb/embed?theme=light-custom&primary_color=%236001d2&playlist_type=latest scrolling=no><div class=caas-card-loader></div><noscript><iframe src=https://art19.com/shows/492879e0-37f8-45f6-8a18-f6a441f6c9bb/embed?theme=light-custom&primary_color=%236001d2&playlist_type=latest></iframe></noscript></blockquote></div><hr><h2>2. Who is the biggest threat to the Nuggets in the West?</h2><p><strong>Devine:</strong> The Thunder, who went 3-1 against Denver this season. There’s some context to all of that: no Kentavious Caldwell-Pope in <a data-i13n=\"cpos:4;pos:1\" href=\"https://www.basketball-reference.com/boxscores/202312160DEN.html\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:one;cpos:4;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">one</a> loss, no Aaron Gordon in <a data-i13n=\"cpos:5;pos:1\" href=\"https://www.basketball-reference.com/boxscores/202312290DEN.html\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:another;cpos:5;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">another</a> and, most notably, no Nikola Jokić in the <a data-i13n=\"cpos:6;pos:1\" href=\"https://www.basketball-reference.com/boxscores/202401310OKC.html\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:third;cpos:6;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">third</a>. But the Shai Gilgeous-Alexander-Jalen Williams combo is tough to guard; OKC has Luguentz Dort to sic on Jamal Murray; the Thunder have counters if Michael Malone stashes Jokić on Josh Giddey (get ready to learn Isaiah Joe, buddy); and, thanks to <a data-i13n=\"cpos:7;pos:1\" href=\"https://www.youtube.com/watch?v=4b7PU4YnwwE\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:SGA;cpos:7;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">SGA</a> and <a data-i13n=\"cpos:8;pos:1\" href=\"https://www.youtube.com/watch?v=3cAiBADZ5sw\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:Big Vic;cpos:8;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">Big Vic</a>, OKC would have home-court advantage.</p><p><strong>Rohrbach:</strong> The Thunder <em>could</em> fully realize their potential all at once. They are built to contend for some time, but who is to say their time is not now?<a data-i13n=\"cpos:9;pos:1\" href=\"https://sports.yahoo.com/nba-fact-or-fiction-can-the-thunder-win-it-all-without-playoff-scars-175654222.html?webview=1\" data-ylk=\"slk:History says so;cpos:9;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\"> History says so</a>, but Oklahoma City has bucked history all season as the youngest No. 1 seed ever by<a data-i13n=\"cpos:10;pos:1\" href=\"https://twitter.com/statmuse/status/1779646235462312087\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:a full two-year average;cpos:10;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\"> a full two-year average</a>. The Thunder are the West's only team to finish top five on offense <em>and</em> defense, and reaching those heights on both ends is the only way to beat Denver.</p><p><strong>Goodwill: </strong>The Timberwolves. Minnesota was built by an executive who largely built the champion Nuggets. So it’s safe to say Tim Connelly would know better than anyone, in a way. Rudy Gobert can't guard Nikola Jokić. Nobody can. But staying home and using the long wings to make life a little tougher elsewhere could be the best strategy, and having a supernova in Anthony Edwards take his place in the NBA’s hierarchy could be fascinating.</p><p><strong>Fischer:</strong> The Thunder. Their 3-1 series advantage against the reigning champs marks Denver’s worst season series among all opponents (the Nuggets were also 1-3 against Houston and Sacramento). If there’s any through line between those three teams, it’s dynamic guards and playmaking centers. The West’s top seed certainly is flush with ball-handlers to break down Denver’s lanky lineup. And Chet Holmgren clearly found his stride after the Finals MVP went to work welcoming the stringbean to the league in October.</p><p><strong>Titus: </strong>The Timberwolves. Their size and star power could make the Nuggets sweat in a potential second-round matchup. The Nuggets are most effective when Jokić is creating for others, and in their four matchups this season, the Timberwolves, with their top defense, held Jokić to just 4.3 assists per game (the lowest mark of any team this year). Of course, that comes with the risk of Jokić going for an easy 30, maybe even 40 points. But if Minnesota's defense can nullify everyone else, that's the path to a thrilling upset against the defending champs.</p><hr><div class=\"caas-yvideo-wrapper caas-yvideo-with-iframe\"><div class=caas-iframe-wrapper><div class=\"caas-iframe default\" style=padding-bottom:56%><blockquote data-src=https://sports.yahoo.com/the-spin-nba/why-jalen-brunson-joel-embiid-204351884.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen><div class=caas-card-loader></div><noscript><iframe src=https://sports.yahoo.com/the-spin-nba/why-jalen-brunson-joel-embiid-204351884.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen></iframe></noscript></blockquote></div></div></div><h2>3. Which first-round series are you most excited to watch?</h2><p><strong>Rohrbach:</strong> Knicks-Sixers. Are the Knicks for real? Does Julius Randle's absence make all that much difference in the playoffs? Can Joel Embiid get healthy? Do the Sixers have enough around him? This series will answer a lot of questions, and one of them might be: Could New York vanquish Philadelphia <em>and</em> convince Embiid the Knicks are in better position to build a contender around him? This series will call Madison Square Garden home, after all.</p><p><strong>Devine:</strong> Wolves-Suns. Anthony Edwards under the brightest lights; the Suns’ Big Three actually healthy and with a little bit of momentum behind them after a strong close; Karl-Anthony Towns and Rudy Gobert trying to rewrite the postseason stories we tell about them; a matchup that <a data-i13n=\"cpos:11;pos:1\" href=\"https://sports.yahoo.com/timberwolves-suns-preview-phoenixs-firepower-could-prove-too-much-for-minnesota-134620207.html?webview=1\" data-ylk=\"slk:looks one way on paper;cpos:11;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">looks one way on paper</a>, so I’m excited to find out how it differs in practice.</p><p><strong>Fischer:</strong> Wolves-Suns. These are two very expensive payrolls clashing without very much wiggle room for a Plan B to their current build. Phoenix would seem to be holding fewer cards should their Kevin Durant-Devin Booker-Bradley Beal trio fall short of true contention. The Wolves would have far greater, albeit some painful, optionality on the trade front if that crossroads were to arrive for Minnesota. Plus, the amount of All-Star talent on both sides of the floor, and the fact Phoenix won all three matchups this season, presents an interesting opportunity for the Timberwolves to find some type of underdog mentality after leading the West for much of the season and claiming home court advantage.</p><p><strong>Titus:</strong> Clippers-Mavericks. It's a pivotal prove-it moment for both teams. Remember, the Mavericks didn't make it to the dance last season. And while I expect this to be a competitive series, I can't trust the Clippers' aging trio. We don't know how much we'll get from Kawhi Leonard, and James Harden's started his yearly late-season disappearing act, shooting 38% from the field since the All-Star break. Give me Mavs with Luka Dončić, who is playing at an MVP level alongside Kyrie Irving and Dallas' retooled frontcourt.</p><p><strong>Goodwill:</strong> Wolves-Suns. And Clippers-Mavs as a close second. Not just the star power and narratives but the basketball competition, the contrast of styles. Styles makes fights, folks. Who doesn’t want to see the Ant-Man guarding Devin Booker and vice-versa? And seeing if Kevin Durant can rev it up one more time for the graybeards. And oh yeah, Luka’s chess match against chess master Ty Lue.</p><hr><div class=\"caas-yvideo-wrapper caas-yvideo-with-iframe\"><div class=caas-iframe-wrapper><div class=\"caas-iframe default\" style=padding-bottom:56%><blockquote data-src=https://sports.yahoo.com/the-spin-nba/paolo-banchero-rise-compares-nba-212058568.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen><div class=caas-card-loader></div><noscript><iframe src=https://sports.yahoo.com/the-spin-nba/paolo-banchero-rise-compares-nba-212058568.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen></iframe></noscript></blockquote></div></div></div><h2>4. Which player are you most excited to watch?</h2><p><strong>Fischer:</strong> Shai Gilgeous-Alexander. For all the attention about OKC’s youth and inexperience, the second-youngest roster in the NBA is headlined by a stone-cold killer who recently led Team Canada to its first FIBA medal since 1936, through a gauntlet that included a win against Luka Dončić and Slovenia. SGA has absolutely thrived ahead of the NBA playoffs. It will be exciting to watch him and the rest of the Thunder stamp their legitimacy for all to see.</p><p><strong>Rohrbach:</strong> Anthony Edwards. <a data-i13n=\"cpos:12;pos:1\" href=\"https://sports.yahoo.com/nba-fact-or-fiction-anthony-edwards-is-the-smoothest-basketball-player-alive-204614779.html?webview=1\" data-ylk=\"slk:He is the smoothest player alive;cpos:12;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">He is the smoothest player alive</a>, following the lineage of Michael Jordan and Kobe Bryant. Not that he is as good as either of them, but he styles games the same way, taking over for stretches that make you think, <em>This is what basketball should look like.</em> And what if he does reach a pantheon level? What if this 22-year-old is on the precipice of true greatness? Then, the Timberwolves will be awfully tough to beat.</p><p><strong>Titus:</strong> Paolo Banchero. He's not a household name yet, but a solid opening-round series against a veteran Cavaliers team could put him on the map. He was a first-time All-Star and invaluable to the Magic this season, helping them win 47 games and increase their win total by 13 games from last year. Let’s see how the second-year pro adjusts to a playoff atmosphere while being the primary scorer and playmaker for a gritty, yet inexperienced playoff team.</p><p><strong>Goodwill:</strong> Anthony Edwards. He might be America’s last great hope. He floats. He flies. He talks — a lot. It’s the charisma these playoffs need and he could be the next star to emerge from the ether of the LeBron-Steph-KD conglomerate that could be finally tumbling down. He plays the glamour position and opportunity is in front of him to snatch the mantle away.</p><p><strong>Devine:</strong> Paolo Banchero. The playoffs reveal how the league sees you; when a team can lock into its plan on how to attack you — and when there’s only one game on, and everyone’s watching it — there’s no place to hide. The greats find ways to play through that pressure, escape the boxes opponents try to put them in, and elevate their game. This is Banchero’s first step in that journey; I’m eager to see him take it, and where it takes him.</p><hr><div class=\"caas-yvideo-wrapper caas-yvideo-with-iframe\"><div class=caas-iframe-wrapper><div class=\"caas-iframe default\" style=padding-bottom:56%><blockquote data-src=https://sports.yahoo.com/the-spin-nba/without-giannis-bucks-trouble-inside-204421839.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen><div class=caas-card-loader></div><noscript><iframe src=https://sports.yahoo.com/the-spin-nba/without-giannis-bucks-trouble-inside-204421839.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen></iframe></noscript></blockquote></div></div></div><h2>5. Who has the most at stake this postseason?</h2><p><strong>Titus:</strong> Doc Rivers. A first-round exit could put Rivers, who hasn't won a second-round series in over a decade, right back on the hot seat. He has a 32% win percentage when having three wins in a series (16-33) and boasts a 6-10 record in Game 7s with four losses on his home court. Yes, Giannis Antetokounmpo is injured, but there is enough talent on the Bucks that if they fall to the Pacers, it could prompt another coaching carousel in Milwaukee.</p><p><strong>Goodwill:</strong> Phoenix, because of the Suns’ ambitious gambit. Milwaukee, because after Mike Budenholzer had one too many playoff failures and then Adrian Griffin wasn’t ready, Doc Rivers has two boulders on his shoulders — his own and the franchise’s. I’m gonna cheat here and say the entire Eastern Conference has a lot on the line, which hasn’t happened since 2007 when LeBron’s one-man road show prompted the Celtics to tilt franchise history with the Kevin Garnett and Ray Allen deals. Seismic change is coming, folks. Who’s gonna take the risk? The next two months will determine it.</p><p><strong>Rohrbach: </strong>The Celtics, who won 64 games, seven more than any other team in the league, and posted a net rating (+11.7) matched only by Michael Jordan's 1990s Chicago Bulls. They are already considered choke artists,<a data-i13n=\"cpos:13;pos:1\" href=\"https://sports.yahoo.com/nba-fact-or-fiction-are-these-celtics-worth-rooting-for-183631972.html?webview=1\" data-ylk=\"slk:fair or unfair;cpos:13;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\"> fair or unfair</a>, so what might we say if they fall short in this, their best chance yet? And what might ownership decide? No NBA core stays together for too long, especially expensive ones that cannot finish the job.</p><p><strong>Fischer:</strong> Phoenix. The Clippers are in another all-in, win-now build with aging veterans, but at least have Kawhi Leonard signed for a three-year extension to begin Los Angeles’ era at Intuit Dome. The Suns, in one respect, have less furniture rooted to the floorboards. And while new owner Mat Ishbia has proven a willingness to spend — draft capital for All-Star scorers, luxury tax dollars to re-sign Grayson Allen, one of the most expensive coaching staffs — there has been too much noise surrounding potential changes to the coaching staff and front office should Phoenix fall well short of its ultimate goal. All while Kevin Durant continues to creep towards the twilight of his career.</p><p><strong>Devine:</strong> I just did a <a data-i13n=\"cpos:14;pos:1\" href=\"https://www.youtube.com/watch?v=8gJ6vMO-zn8&list=PLtAg01865jDc4g2TNZAaW8RqWAQx31N3m&t=2622s\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:whole podcast segment about this with Tom Haberstroh;cpos:14;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">whole podcast segment about this with Tom Haberstroh</a>; I encourage you to check that out in its entirety! My colleagues covered the big names, so I’ll take the Cavaliers. They dealt with overlapping injuries all season, but still had a chance at the No. 2 seed. Instead, staring down a first-round matchup with Philadelphia or Miami, they punted their season finale to drop to fourth, opting for what they deemed a friendlier matchup against Orlando — a clear indicator that they define progress as “getting out of the first round, whatever it takes.”</p><p>So … what if they don’t?</p><p>What message would that send about the core of Donovan Mitchell, Darius Garland, Jarrett Allen and Evan Mobley — in whose minutes Cleveland was an underwhelming <a data-i13n=\"cpos:15;pos:1\" href=\"https://cleaningtheglass.com/stats/team/6/lineups?on=4576&on=4362&on=4866&on=4337#tab-four_factors\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:plus-2.7 points per 100 possessions;cpos:15;pos:1;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">plus-2.7 points per 100 possessions</a>? What would it mean for Cleveland’s chances of getting Mitchell to re-up on a long-term extension? Could another early exit put coach J.B. Bickerstaff or president Koby Altman on the hot seat?</p><p>Winning would put those questions on the backburner. Falling short, though, might produce some uncomfortable answers.</p><hr><h2>Bonus question: What's your early Finals prediction?</h2><p><strong>Goodwill:</strong> Nuggets over whomever gets out of the East, probably Boston. I have trust issues with Boston, but no other team looks to have their stuff together to truly challenge if an opening should arise. Denver is the champion and no longer facing the boredom of the regular season. Usually best player at the peak of his powers means June. Who am I to go against history?</p><p><strong>Fischer:</strong> Nuggets over Celtics. You won’t find me straying from the reigning champs so long as Jokić and company are fully healthy. Denver’s starting lineup remains as close to perfect of a five-man unit as they come. On the flip side, it’s hard to find a top-six that comes close to what Boston’s front office has put together over the last few years, capping a strong rotation with Kristaps Porzingis and Jrue Holiday this past offseason.</p><p><strong>Rohrbach:</strong> Celtics over Nuggets. <a data-i13n=\"cpos:16;pos:1\" href=\"https://sports.yahoo.com/nba-fact-or-fiction-is-nuggets-celtics-the-nba-finals-we-deserve-170401178.html?webview=1\" data-ylk=\"slk:It is the NBA Finals we deserve;cpos:16;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">It is the NBA Finals we deserve</a>.<strong> </strong>And while Jayson Tatum may not be the best player in every series, especially one against Nikola Jokić, the Celtics might boast five of the best seven players in any series.</p><p><strong>Titus:</strong> Nuggets over Celtics. Both teams are too dominant. Boston is another tier above the competition in the East, holding a 24-10 record in the regular season versus the remaining playoff and play-in teams. They're in the top two in offensive and defensive rating, so it's no surprise they were the best team all season. The Nuggets are the reigning champs and have a deep roster with very few flaws. Their path to the Western Conference finals is more complex than the Celtics, but I have Denver winning it all.</p><p><strong>Devine:</strong> Nuggets over Celtics. I don’t like chalk, but it’s really easy to write with.</p><hr><hr><div class=\"caas-yvideo-wrapper caas-yvideo-with-iframe\"><div class=caas-iframe-wrapper><div class=\"caas-iframe default\" style=padding-bottom:56%><blockquote data-src=https://sports.yahoo.com/the-spin-nba/clippers-vs-mavericks-nba-playoffs-182435144.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen><div class=caas-card-loader></div><noscript><iframe src=https://sports.yahoo.com/the-spin-nba/clippers-vs-mavericks-nba-playoffs-182435144.html?format=embed&region=US&lang=en-US&site=sports&player_autoplay=0&recommendations=0&expName=caas_native_apps allowfullscreen></iframe></noscript></blockquote></div></div></div><h2>PLAYOFF PREDICTIONS: FIRST-ROUND SERIES</h2><h2><a data-i13n=\"cpos:17;pos:1\" href=\"https://sports.yahoo.com/knicks-76ers-preview-is-new-york-the-favorite-against-philadelphia-and-joel-embiid-192711683.html?webview=1\" data-ylk=\"slk:(2) Knicks vs. (7) 76ers;cpos:17;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(2) Knicks vs. (7) 76ers</a></h2><p><strong>Dan Devine:</strong> Knicks in 7 <br><strong>Jake Fischer:</strong> Knicks in 7<br><strong>Vincent Goodwill: </strong>Knicks in 6 <br><strong>Tom Haberstroh:</strong> Knicks in 6 <br><strong>Ben Rohrbach:</strong> Knicks in 7 <br><strong>Dan Titus:</strong> Sixers in 6</p><h2><a data-i13n=\"cpos:18;pos:1\" href=\"https://sports.yahoo.com/2024-nba-playoff-preview-bucks-vs-pacers-series-breakdown-and-prediction-140829312.html?webview=1\" data-ylk=\"slk:(3) Bucks vs. (6) Pacers;cpos:18;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(3) Bucks vs. (6) Pacers</a></h2><p><strong>Devine:</strong> Bucks in 7 <br><strong>Fischer:</strong> Pacers in 6 <br><strong>Goodwill: </strong>Bucks in 7 <br><strong>Haberstroh: </strong>Bucks in 7 <br><strong>Rohrbach:</strong> Pacers in 6 <br><strong>Titus:</strong> Bucks in 7</p><h2><a data-i13n=\"cpos:19;pos:1\" href=\"https://sports.yahoo.com/2024-nba-playoff-preview-cavaliers-vs-magic-series-breakdown-and-prediction-153941554.html?webview=1\" data-ylk=\"slk:(4) Cavaliers vs. (5) Magic;cpos:19;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(4) Cavaliers vs. (5) Magic</a></h2><p><strong>Devine:</strong> Magic in 6 <br><strong>Fischer:</strong> Magic in 6 <br><strong>Goodwill: </strong>Magic in 6 <br><strong>Haberstroh </strong>Magic in 6 <br><strong>Rohrbach:</strong> Cavs in 7 <br><strong>Titus:</strong> Cavs in 6</p><h2><a data-i13n=\"cpos:20;pos:1\" href=\"https://sports.yahoo.com/nuggets-lakers-preview-can-lebron-get-la-past-denver-who-can-stop-nikola-jokic-132007463.html?webview=1\" data-ylk=\"slk:(2) Nuggets vs. (7) Lakers;cpos:20;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(2) Nuggets vs. (7) Lakers</a></h2><p><strong>Devine:</strong> Nuggets in 5 <br><strong>Fischer:</strong> Nuggets in 5 <br><strong>Goodwill: </strong>Nuggets in 5 <br><strong>Haberstroh:</strong> Nuggets in 6 <br><strong>Rohrbach:</strong> Nuggets in 5 <br><strong>Titus:</strong> Nuggets in 5</p><h2><a data-i13n=\"cpos:21;pos:1\" href=\"https://sports.yahoo.com/timberwolves-suns-preview-phoenixs-firepower-could-prove-too-much-for-minnesota-134620207.html?webview=1\" data-ylk=\"slk:(3) Timberwolves vs. (6) Suns;cpos:21;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(3) Timberwolves vs. (6) Suns</a></h2><p><strong>Devine:</strong> Suns in 6 <br><strong>Fischer:</strong> Wolves in 7 <br><strong>Goodwill: </strong>Wolves in 7 <br><strong>Haberstroh:</strong> Wolves in 6<br><strong>Rohrbach:</strong> Suns in 7 <br><strong>Titus:</strong> Wolves in 7</p><h2><a data-i13n=\"cpos:22;pos:1\" href=\"https://sports.yahoo.com/2024-nba-playoff-preview-clippers-vs-mavericks-series-breakdown-and-prediction-152945753.html?webview=1\" data-ylk=\"slk:(4) Clippers vs. (5) Mavericks;cpos:22;pos:1;elm:context_link;itc:0;sec:content-canvas;outcm:mb_qualified_link;_E:mb_qualified_link;ct:story;\" class=\"link rapid-noclick-resp yahoo-link\">(4) Clippers vs. (5) Mavericks</a></h2><p><strong>Devine:</strong> Mavs in 6 <br><strong>Fischer:</strong> Mavs in 6 <br><strong>Goodwill: </strong>Mavs in 7 <br><strong>Haberstroh:</strong> Mavs in 7 <br><strong>Rohrbach:</strong> Mavs in 7 <br><strong>Titus:</strong> Mavs in 6</p></div></article></div></div><script src=https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.js></script><script>ES6Promise.polyfill()</script><script src=https://s.yimg.com/aaq/c/92556e0.caas-sports_app_android.min.js></script></body></html>"
}
}
},
{
"id": "3b91c568-d8aa-302a-9b29-c8408c0ff5c8",
"type": "CONTENT",
"content": {
"title": "Scheffler shakes off early shank to shoot 69 at RBC",
"pubDate": "2024-04-18T19:16:25Z",
"displayTime": "2024-04-18T19:16:25Z",
"subheadline": "",
"isOpinion": false,
"presentation": null,
"liveBlogStatus": null,
"heroModule": null,
"commentsAllowed": true,
"contentType": "STORY",
"isHosted": true,
"ampUrl": "",
"structuredSummary": {
"summaries": [
{
"type": "text",
"value": "Scheffler shook off a slow start to come in with a 2-under 69 to start at Harbour Town, continuing his streak of 37 consecutive rounds of par or better on Tour (dating to the final round of the 2023 Tour Championship)."
},
{
"type": "text",
"value": "Scheffler’s rare shank in competition led to a double-bogey 6, and he was 1 over par through six holes on a day when J.T. Poston was racing out to an 8-under opener."
},
{
"type": "text",
"value": "“I tried to give myself a little bit of grace there,” Scheffler told reporters afterward."
}
],
"source": "cap"
},
"provider": {
"url": "http://www.golfchannel.com/",
"displayName": "Golf Channel",
"logo": {
"type": "logo",
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/2606dbb0-708f-11eb-95ee-acfef6603d1d",
"originalHeight": 400,
"originalWidth": 400,
"resolutions": [
{
"tag": "original",
"url": "https://s.yimg.com/uu/api/res/1.2/F2sJeqkraKguENSCnzqvnw--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/2606dbb0-708f-11eb-95ee-acfef6603d1d",
"width": 400,
"height": 400
},
{
"tag": "100x50",
"url": "https://s.yimg.com/uu/api/res/1.2/9oA0eSPnXbarLI9L5bxAGw--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/2606dbb0-708f-11eb-95ee-acfef6603d1d",
"width": 100,
"height": 50
}
]
},
"lightLogo": {
"originalHeight": 100,
"originalWidth": 291,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/44ccd180-708f-11eb-87bd-19c3574c07ba",
"type": "lightlogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/CGa6umRqen_l6KvkEZzOww--~B/aD0xMDA7dz0yOTE7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/44ccd180-708f-11eb-87bd-19c3574c07ba",
"tag": "original",
"height": 100,
"width": 291
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/k9H6JqjEwh90m1MC_eF6aA--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/44ccd180-708f-11eb-87bd-19c3574c07ba",
"tag": "100x50",
"height": 50,
"width": 100
}
]
},
"darkLogo": {
"originalHeight": 100,
"originalWidth": 291,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/57b81c50-708f-11eb-b4c8-854068c29f5c",
"type": "darklogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/14SNWyuNDtntSnIIceIqNQ--~B/aD0xMDA7dz0yOTE7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/57b81c50-708f-11eb-b4c8-854068c29f5c",
"tag": "original",
"height": 100,
"width": 291
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/C4muwPEpj18U_2G.nI_kFg--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/57b81c50-708f-11eb-b4c8-854068c29f5c",
"tag": "100x50",
"height": 50,
"width": 100
}
]
}
},
"previewUrl": null,
"providerContentUrl": "https://www.nbcsports.com/golf/news/scottie-scheffler-shakes-off-early-shank-to-shoot-69-at-rbc-heritage",
"canonicalUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://www.nbcsports.com/golf/news/scottie-scheffler-shakes-off-early-shank-to-shoot-69-at-rbc-heritage"
},
"clickThroughUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/scheffler-shakes-off-early-shank-191625861.html"
},
"author": {
"image": null,
"byline": "",
"description": "",
"displayName": ""
},
"authors": [
{
"author": {
"image": null,
"byline": "",
"description": "",
"displayName": ""
}
}
],
"thumbnail": {
"originalUrl": "https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"originalWidth": 1920,
"originalHeight": 1080,
"resolutions": [
{
"height": 1080,
"tag": "original",
"width": 1920,
"url": "https://s.yimg.com/uu/api/res/1.2/FrWiiu9ldddvcwpOZoUK3A--~B/aD0xMDgwO3c9MTkyMDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155"
},
{
"height": 422,
"tag": "750",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/ApetjXYwRJk56GR1afKRsw--~B/Zmk9ZmlsbDtoPTQyMjt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155"
},
{
"height": 240,
"tag": "320x240",
"width": 320,
"url": "https://s.yimg.com/uu/api/res/1.2/dL4myZbejWK68CeqvN_vhA--~B/Zmk9ZmlsbDtoPTI0MDtweW9mZj0wO3c9MzIwO2FwcGlkPXl0YWNoeW9u/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155"
},
{
"height": 422,
"tag": "750x",
"width": 750,
"url": "https://s.yimg.com/uu/api/res/1.2/ApetjXYwRJk56GR1afKRsw--~B/Zmk9ZmlsbDtoPTQyMjt3PTc1MDthcHBpZD15dGFjaHlvbg--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155"
}
]
},
"adMeta": {
"siteAttribute": "wiki_topics=\"Scottie_Scheffler;RBC_Heritage;Hilton_Head_Island,_South_Carolina;2023_Tour_Championship\" ctopid=\"2074500;2078500;2096500;2212000;2273500\" hashtag=\"2074500;2078500;2096500;2212000;2273500\" rs=\"lmsid:a0a0W00000DrJN6QAN;revsp:the_golf_channel_404;lpstaid:3b91c568-d8aa-302a-9b29-c8408c0ff5c8;pct:story\"",
"site": null,
"spaceId": "954012427"
},
"canvass": {
"contextId": "3b91c568-d8aa-302a-9b29-c8408c0ff5c8",
"count": 0
},
"readingMeta": {
"wpm200": 119
},
"readMoreList": "",
"body": {
"modules": {},
"data": {
"partnerData": {
"adMeta": {
"hashtag": "golf;sports",
"isSupplySegment": "false",
"lang": "en-US",
"region": "US",
"rs": "lmsid:a0a0W00000DrJN6QAN;revsp:the_golf_channel_404;lpstaid:3b91c568-d8aa-302a-9b29-c8408c0ff5c8;pct:story",
"site_attribute": "wiki_topics=\"Scottie_Scheffler;RBC_Heritage;Hilton_Head_Island,_South_Carolina;2023_Tour_Championship\" ctopid=\"2074500;2078500;2096500;2212000;2273500\" hashtag=\"2074500;2078500;2096500;2212000;2273500\" rs=\"lmsid:a0a0W00000DrJN6QAN;revsp:the_golf_channel_404;lpstaid:3b91c568-d8aa-302a-9b29-c8408c0ff5c8;lu:0;pct:story\"",
"spaceid": "954012427",
"site": "sports",
"enabled": true,
"pos": "LREC",
"showBodyAds": true,
"showPhotoAds": false
},
"contentType": "story",
"cover": {
"image": {
"caption": "Scheffler shakes off early shank to shoot 69 at RBC",
"originalUrl": "https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"originalHeight": 1080,
"originalWidth": 1920,
"resolutions": [
{
"height": 859,
"url": "https://s.yimg.com/ny/api/res/1.2/6Tj2eKYR4fGcD_hAmCT6Zg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTg1OTt3PTE2NDA-/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 1640,
"tag": "fit-width-1640"
},
{
"height": 674,
"url": "https://s.yimg.com/ny/api/res/1.2/5wInU2FlVC7qvU3tLKGTOg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTY3NDt3PTEyMDA-/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 1200,
"tag": "fit-width-1200"
},
{
"height": 1200,
"url": "https://s.yimg.com/ny/api/res/1.2/Vmxi6W0Dbwbd6CnjzoI.KA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9MTIwMDt3PTEyMDA-/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 1200,
"tag": "square-1200"
},
{
"height": 461,
"url": "https://s.yimg.com/ny/api/res/1.2/sIXPIuAIiZN5VB9rwoM3ng--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTQ2MTt3PTgyMA--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 820,
"tag": "fit-width-820"
},
{
"height": 360,
"url": "https://s.yimg.com/ny/api/res/1.2/3v3Cu4Albf05dEiSXjK3iA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTM2MDt3PTY0MA--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 640,
"tag": "fit-width-640"
},
{
"height": 820,
"url": "https://s.yimg.com/ny/api/res/1.2/77Id5b4oABAmQ.kzNiuvzg--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1maWxsO2g9ODIwO3c9ODIw/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 820,
"tag": "square-820"
},
{
"height": 280,
"url": "https://s.yimg.com/ny/api/res/1.2/.OXiwygErIizOiVjMPN6Pw--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTI4MDt3PTI4MA--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 280,
"tag": "square-280"
},
{
"height": 224,
"url": "https://s.yimg.com/ny/api/res/1.2/QhSVmwgyq9T_LSCEg.9qKA--/YXBwaWQ9aGlnaGxhbmRlcjtmaT1zdHJpbTtoPTIyNDt3PTMwMA--/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 300,
"tag": "fit-width-300"
},
{
"url": "https://s.yimg.com/ny/api/res/1.2/tc_GDLZSrcbO5xKtiR8zsQ--/YXBwaWQ9aGlnaGxhbmRlcjt3PTE2NDA7aD05MjM-/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 1640,
"height": 923,
"tag": "max-width-1640"
},
{
"height": 1080,
"url": "https://s.yimg.com/ny/api/res/1.2/ngiYzskOUc9Mpsgyfs9vnA--/YXBwaWQ9aGlnaGxhbmRlcjtoPTEwODA7dz0xOTIw/https://media.zenfs.com/en/the_golf_channel_404/bbd531859d93cf68c3cc1c61491e5155",
"width": 1920,
"tag": "original"
}
]
}
},
"hasScribble": false,
"hostedType": "hosted",
"lastModifiedTime": "",
"spaceId": "954012427",
"tpConsent": true,
"type": "story",
"url": "https://www.nbcsports.com/golf/news/scottie-scheffler-shakes-off-early-shank-to-shoot-69-at-rbc-heritage",
"uuid": "3b91c568-d8aa-302a-9b29-c8408c0ff5c8",
"video_enrichment": {}
}
},
"markup": "<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta name=viewport content=\"width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=no\"><link rel=preconnect href=https://s.yimg.com><link rel=preconnect href=https://geo.query.yahoo.com><link rel=preconnect href=https://csc.beap.bc.yahoo.com><link rel=preconnect href=https://beap.gemini.yahoo.com><link rel=preconnect href=https://yep.video.yahoo.com><link rel=preconnect href=https://video-api.yql.yahoo.com><link rel=preconnect href=https://yrtas.btrll.com><link rel=preconnect href=https://shim.btrll.com><link href=https://s.yimg.com/aaq/c/987679d.caas-sports_app_android.min.css rel=stylesheet type=text/css><meta http-equiv=x-dns-prefetch-control content=on></head><body class=\"_CAAS_SYSTEM_THEME_OFF_PLACEHOLDER_ _CAAS_THEME_PLACEHOLDER_\"><div id=caas-articles-container class=caas-wrapper><div class=\"caas caas-cc ncp sports caas-ynet\" data-device=smartphone data-i18n='{\"{date} at {time}\":\"{date} at {time}\",\"{0} hr ago\":\"{0} hr ago\",\"{0} min ago\":\"{0} min ago\",\"{0} mins ago\":\"{0} mins ago\",\"{0} Views\":\"{0} Views\",\"INLINE_CONSENT_BLOCKED_3P_BUTTON_ALLOW\":\"Allow\",\"LESS\":\"Less\",\"LIVE_IS_OVER\":\"LIVE COVERAGE IS OVER\",\"LOADING\":\"Loading\",\"MORE\":\"More\",\"NEW_UPDATE\":\"new update\",\"NEW_UPDATES\":\"new updates\",\"JUST_NOW\":\"Just now\",\"RELOAD\":\"Click to reload with latest update\",\"SEE {0} MORE\":\"See {0} more\",\"SEE_LESS\":\"See less\",\"SEE_MORE\":\"See more\",\"SHOW_MORE\":\"Show more updates\",\"TODAY\":\"Today\",\"TRY_AGAIN\":\"Something went wrong. Try again\",\"UPDATE\":\"update\",\"UPDATES\":\"updates\",\"VIDEO_A11Y_DISABLE_FULLSCREEN\":\"Full Screen, button, disabled, temporarily not available for screen reader users\"}' data-lang=en-US data-tz=America/New_York data-params='{\"features\":{\"ncp\":true},\"config\":{\"authorBylineCollapseLineCount\":2,\"commerceQuickOverviewLimit\":5,\"freezeOnLinkClick\":false,\"lazyOffsetY\":900,\"livecoverage\":{\"defer\":false},\"imageCaptionCollapseLineCount\":3,\"slideshowCaptionCollapseLineCount\":2,\"uiShowPreviousButtonOnLoad\":false,\"prestigeScrollMarginTop\":-72}}' id=caas-art-3b91c568-d8aa-302a-9b29-c8408c0ff5c8><article role=article tabindex=-1><script class=caas-yvideo-config type=application/ld+json>\n {}\n </script><script class=caas-timezone-config type=application/ld+json>\n {\"longForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"shortForm\":{\"day\":\"numeric\",\"month\":\"long\",\"year\":\"numeric\"},\"postDateLongForm\":{\"weekday\":\"short\",\"day\":\"numeric\",\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"month\":\"long\",\"year\":\"numeric\",\"timeZoneName\":\"short\"},\"postDateShortForm\":{\"hour\":\"numeric\",\"hourCycle\":\"h12\",\"minute\":\"2-digit\",\"timeZoneName\":\"short\"}}\n </script><script class=caas-embedded-config type=application/ld+json>\n {\"twitter\":{\"timeout\":5000}}\n </script><div class=caas-body><p>Scottie Scheffler didn’t put in his usual prep work ahead of the RBC Heritage, prioritizing his rest and recovery after a hard-fought victory at the Masters.</p><p>A shanked bunker shot on the third hole Thursday helped sharpen his focus.</p><p>Scheffler shook off a slow start to come in with a 2-under 69 to start at Harbour Town, continuing his streak of 37 consecutive rounds of par or better on Tour (dating to the final round of the 2023 Tour Championship).</p><div class=caas-da><div id=defaultLREC><div class=caas-da-loader><i></i></div></div></div><p>Scheffler’s rare shank in competition led to a double-bogey 6, and he was 1 over par through six holes on a day when J.T. Poston was racing out to an 8-under opener.</p><p>“I tried to give myself a little bit of grace there,” Scheffler told reporters afterward. “It clearly was just a mental lapse, and I wasn’t quite into it yet. Tried to give myself a little bit of time.”</p><p>After briefly heading back home to Texas, Scheffler headed to Hilton Head Island on Tuesday and played just nine holes during the Wednesday pro-am. Starting out Thursday, he felt somewhat underprepared as he tried to adjust to the slower speed of the greens and not as mentally engaged as usual.</p><div id=caas-article-upsell class=\"caas-placeholder-upsell caas-upsell-container wafer-fetch\" data-wf-replace=1 data-wf-state-body='{\"ctrl\":\"SubscriptionMonalixa\",\"m_id\":\"react-wafer-subscription\",\"m_mode\":\"json\",\"module\":\"monalixaRightRail\",\"config\":{\"apiVersion\":\"2\",\"pageContext\":\"[state.publisherBlobPageContext]\",\"appid\":\"1b552308-2ab7-4066-a308-65e488e6e306\",\"containerselector\":\"#sports-mobile-web-article-body\",\"placement\":\"sports-mobile-web-article-body\"}}' data-wf-retry-count=2 data-wf-timeout=5000 data-wf-trigger=viewport data-wf-trigger-offset=\"600 0\" data-wf-url=/fp_ms/_rcv/remote?m_id=react-wafer-subscription&ctrl=SubscriptionMonalixa&module=monalixaRightRail&site=sports&device=smartphone&lang=en-US®ion=US&m_mode=json></div><p>“I think I was maybe too settled down to start the day,” he said. “I wasn’t quite into the competition. I think maybe it was a bit of fatigue, whatever it was. But I felt like I was still getting adjusted to the golf course.”</p><p>Still, Scheffler rebounded with three birdies coming home to card yet another sub-par score.</p><div class=twitter-tweet-wrapper data-embed-anchor=8f016db4-9f10-5b27-84e8-c8d386a6efe9><blockquote placeholder data-theme=light class=twitter-tweet><div class=\"caas-card-loader small fixed-height\"></div><p>Scottie Scheffler makes it look easy. <a href=\"https://t.co/duozgE9Xhy\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:pic.twitter.com/duozgE9Xhy;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">pic.twitter.com/duozgE9Xhy</a></p><p>— PGA TOUR (@PGATOUR) <a href=\"https://twitter.com/PGATOUR/status/1781019415699456048?ref_src=twsrc%5Etfw\" rel=\"nofollow noopener\" target=\"_blank\" data-ylk=\"slk:April 18, 2024;elm:context_link;itc:0;sec:content-canvas\" class=\"link rapid-noclick-resp\">April 18, 2024</a></p></blockquote></div><p>“I feel like I had more energy now than I did at the beginning of the day waking up to go play golf,” he said. “I think getting into the tournament, hitting some shots, getting a bit frustrated, getting a bit excited about my finish there – all good emotions to feel. It’s nice to be back into tournament mode.”</p><p>Scheffler planned to spend a bit more time on the practice putting green before kicking up his feet for the remainder of the afternoon. He has a longer break before Round 2, when he is set to start with Jordan Spieth at 1:30 p.m. ET Friday.</p></div></article></div></div><script src=https://cdnjs.cloudflare.com/ajax/libs/es6-promise/4.1.0/es6-promise.js></script><script>ES6Promise.polyfill()</script><script src=https://s.yimg.com/aaq/c/92556e0.caas-sports_app_android.min.js></script></body></html>"
}
}
},
{
"id": "8759974c-fbeb-4546-b4ac-978f5ecaa655",
"type": "CONTENT",
"content": {
"title": "Rockies hitting coach Hensley Meulens' cockpit visit triggers FAA investigation",
"pubDate": "2024-04-19T15:48:43Z",
"displayTime": "2024-04-19T15:49:22Z",
"subheadline": "Meulens is seen in a since-deleted video sitting in one of the pilots' seats during a team charter from Denver to Toronto",
"isOpinion": false,
"presentation": null,
"liveBlogStatus": null,
"heroModule": {
"darkBackground": false,
"headlinePosition": "above",
"type": "standard"
},
"commentsAllowed": true,
"contentType": "STORY",
"isHosted": true,
"ampUrl": "",
"structuredSummary": {
"summaries": [
{
"type": "text",
"value": "The Federation Aviation Administration is launching an investigation after a since-deleted video was posted showing Colorado Rockies hitting coach Hensley Meulens inside the flight deck during the team's charter flight from Denver to Toronto last week."
},
{
"type": "text",
"value": "United Airlines and the Federal Aviation Administration are investigating how a passenger gained access to the cockpit of a 757 at cruise altitude in violation of the company’s policy and FAA regulations."
}
],
"source": "cap"
},
"provider": {
"url": "https://sports.yahoo.com/",
"displayName": "Yahoo Sports",
"logo": {
"type": "logo",
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"originalHeight": 400,
"originalWidth": 400,
"resolutions": [
{
"tag": "original",
"url": "https://s.yimg.com/uu/api/res/1.2/2lVDVggwaje9HT.QojjqWA--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 400,
"height": 400
},
{
"tag": "100x50",
"url": "https://s.yimg.com/uu/api/res/1.2/OfyjfiwFG_W4Dqwyad2vcw--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/b6728df0-6bdc-11eb-b7bd-913b7afc7515",
"width": 100,
"height": 50
}
]
},
"lightLogo": {
"originalHeight": 100,
"originalWidth": 469,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"type": "lightlogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/F1BfKNybxRwKZSbWsVVdAw--~B/aD0xMDA7dz00Njk7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "original",
"height": 100,
"width": 469
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/tv97T9BRLtnTtOL3dBusIQ--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/d6cfeca0-6bdc-11eb-9fff-072dbeffa160",
"tag": "100x50",
"height": 50,
"width": 100
}
]
},
"darkLogo": {
"originalHeight": 100,
"originalWidth": 513,
"originalUrl": "https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"type": "darklogo",
"resolutions": [
{
"url": "https://s.yimg.com/uu/api/res/1.2/L5r8ccvvGTp4fcoafLKCAg--~B/aD0xMDA7dz01MTM7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "original",
"height": 100,
"width": 513
},
{
"url": "https://s.yimg.com/uu/api/res/1.2/8ivOqKUcScynOSokmb5x4g--~B/Zmk9ZmlsbDtoPTUwO3B5b2ZmPTA7dz0xMDA7YXBwaWQ9eXRhY2h5b24-/https://s.yimg.com/os/creatr-uploaded-images/2021-02/eea32ae0-6bdc-11eb-bf5e-5d7f15d13ff6",
"tag": "100x50",
"height": 50,
"width": 100
}
]
}
},
"previewUrl": null,
"providerContentUrl": "",
"canonicalUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/rockies-hitting-coach-hensley-meulens-cockpit-visit-triggers-faa-investigation-154843521.html"
},
"clickThroughUrl": {
"lang": "en-US",
"region": "US",
"site": "sports",
"url": "https://sports.yahoo.com/rockies-hitting-coach-hensley-meulens-cockpit-visit-triggers-faa-investigation-154843521.html"
},
"author": {
"image": {
"originalHeight": 400,
"originalWidth": 400,
"originalUrl": "https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1",
"resolutions": [
{
"height": 400,
"tag": "original",
"width": 400,
"url": "https://s.yimg.com/uu/api/res/1.2/6XWdpYVE.C50nmLO4bqOQw--~B/aD00MDA7dz00MDA7YXBwaWQ9eXRhY2h5b24-/https://o.aolcdn.com/images/dims?image_uri=https%3A%2F%2Fs.yimg.com%2Fos%2Fcreatr-uploaded-images%2F2023-10%2F827177e0-6018-11ee-9fef-22290ba0faa2&compress=1&progressive=1&quality=75&client=hawkeye&signature=99783e485f0eccbf7030fb851482377b994b62a1"
},
{
"height": 400,