-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
15481 lines (15476 loc) · 402 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"stories": [
{
"id": 308260,
"objectId": 1337584,
"scribeId": 34700893,
"slug": "ind-vs-sa-2nd-t20i-2022-bowling-riches-leave-south-africa-with-good-headache-ahead-of-t20-world-cup",
"title": "Bowling riches leave South Africa with good headache ahead of T20 World Cup",
"subTitle": "",
"seoTitle": "Ind vs SA - 2nd T20I 2022 - Bowling riches leave South Africa with good headache ahead of T20 World Cup",
"summary": "Five fast bowlers and two spinners present them with a lot of options, but landing on the right one won't be easy",
"byline": "Karthik Krishnaswamy",
"categoryType": "OTHERS",
"genreType": "ANALYSIS",
"genreId": 17,
"genreName": "Analysis",
"publishedAt": "2022-10-01T12:43:00.000Z",
"modifiedAt": "2022-10-01T12:52:11.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 571,
"image": {
"id": 329290,
"objectId": 1285253,
"slug": "lungi-ngidi-and-kagiso-rabada-grab-a-bite-before-the-game",
"url": "/db/PICTURES/CMS/329200/329290.5.jpg",
"width": 365,
"height": 205,
"caption": "Lungi Ngidi and Kagiso Rabada grab a bite before the game",
"longCaption": "Lungi Ngidi and Kagiso Rabada grab a bite before the game, South Africa vs West Indies, T20 World Cup, Group 1, Dubai, October 26, 2021",
"credit": "ICC via Getty",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/329200/329290.jpg",
"WIDE": "/db/PICTURES/CMS/329200/329290.6.jpg",
"SQUARE": "/db/PICTURES/CMS/329200/329290.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:30:18.630Z"
},
{
"id": 308265,
"objectId": 1337603,
"scribeId": 34701494,
"slug": "ind-vs-sa-2nd-t20i-with-jasprit-bumrah-s-injury-at-the-back-of-mind-india-look-to-seal-the-series",
"title": "With Bumrah injury at the back of mind, India look to seal the series",
"subTitle": "",
"seoTitle": "Ind vs SA, 2nd T20I - With Jasprit Bumrah's injury at the back of mind, India look to seal the series",
"summary": "South Africa will want their top order to bounce back from the horrors of Thiruvananthapuram",
"byline": "Karthik Krishnaswamy",
"categoryType": "OTHERS",
"genreType": "PREVIEW",
"genreId": 2,
"genreName": "Preview",
"publishedAt": "2022-10-01T14:36:00.000Z",
"modifiedAt": "2022-10-01T14:43:15.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 571,
"image": {
"id": 346720,
"objectId": 1337110,
"slug": "suryakumar-yadav-goes-big",
"url": "/db/PICTURES/CMS/346700/346720.5.jpg",
"width": 365,
"height": 205,
"caption": "Suryakumar Yadav goes big",
"longCaption": "Suryakumar Yadav goes big, India vs South Africa, 1st T20I, Thiruvananthapuram, September 28, 2022 ",
"credit": "BCCI",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346700/346720.jpg",
"WIDE": "/db/PICTURES/CMS/346700/346720.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346700/346720.10.jpg"
}
},
"matchMeta": {
"id": 105692,
"objectId": 1327507,
"scribeId": 1327507,
"slug": "india-vs-south-africa-2nd-t20i",
"seriesId": 14855,
"seriesObjectId": 1327499,
"seriesSlug": "south-africa-in-india-2022-23"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:30:41.816Z"
},
{
"id": 308216,
"objectId": 1337347,
"scribeId": 34693337,
"slug": "mohammed-siraj-named-jasprit-bumrah-s-replacement-for-last-two-south-africa-t20is",
"title": "Siraj replaces Bumrah for last two South Africa T20Is",
"subTitle": "",
"seoTitle": "Mohammed Siraj named Jasprit Bumrah's replacement for last two South Africa T20Is",
"summary": "Siraj is expected to link up with the squad later today in Guwahati",
"byline": "Shashank Kishore",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-09-30T04:00:00.000Z",
"modifiedAt": "2022-09-30T15:14:27.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 667,
"image": {
"id": 343291,
"objectId": 1326458,
"slug": "mohammed-siraj-s-early-strikes-unsettled-west-indies",
"url": "/db/PICTURES/CMS/343200/343291.5.jpg",
"width": 365,
"height": 205,
"caption": "Mohammed Siraj's early strikes unsettled West Indies",
"longCaption": "Mohammed Siraj's early strikes unsettled West Indies, West Indies vs India, 3rd ODI, Port of Spain, July 27, 2022",
"credit": "Associated Press",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/343200/343291.jpg",
"WIDE": "/db/PICTURES/CMS/343200/343291.6.jpg",
"SQUARE": "/db/PICTURES/CMS/343200/343291.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:25:28.985Z"
},
{
"id": 308194,
"objectId": 1337186,
"scribeId": 34693197,
"slug": "kartikeya-date-why-t20-hitting-is-not-just-a-more-risky-version-of-batting",
"title": "Why T20 hitting is not just a more risky version of batting",
"subTitle": "",
"seoTitle": "Kartikeya Date - Why T20 hitting is not just a more risky version of batting",
"summary": "And how Pakistan have not quite caught up with the other international teams when it comes to going on the attack",
"byline": "Kartikeya Date",
"categoryType": "OTHERS",
"genreType": "STATS",
"genreId": 224,
"genreName": "Stats Analysis",
"publishedAt": "2022-10-02T02:30:00.000Z",
"modifiedAt": "2022-10-02T02:30:28.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 547,
"image": {
"id": 346411,
"objectId": 1336066,
"slug": "mohammad-rizwan-and-babar-azam-put-on-another-century-stand",
"url": "/db/PICTURES/CMS/346400/346411.5.jpg",
"width": 365,
"height": 205,
"caption": "Mohammad Rizwan and Babar Azam put on another century stand",
"longCaption": "Mohammad Rizwan and Babar Azam put on another century stand, Pakistan vs England, 2nd T20I, Karachi, September 22, 2022",
"credit": "Associated Press",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346400/346411.jpg",
"WIDE": "/db/PICTURES/CMS/346400/346411.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346400/346411.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:31:06.816Z"
},
{
"id": 308262,
"objectId": 1337592,
"scribeId": 34701097,
"slug": "t20-world-cup-india-coach-rahul-dravid-still-awaiting-official-confirmation-of-the-extent-of-jasprit-bumrahs-injury",
"title": "Dravid still awaiting official confirmation of the extent of Bumrah's injury",
"subTitle": "",
"seoTitle": "T20 World Cup - India coach Rahul Dravid still awaiting official confirmation of the extent of Jasprit Bumrahs injury",
"summary": "With less than a month till their first match at the T20 World Cup, India are sweating the fitness of their strike bowler",
"byline": "ESPNcricinfo staff",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-10-01T13:35:00.000Z",
"modifiedAt": "2022-10-01T16:02:57.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 1,
"image": {
"id": 341881,
"objectId": 1322515,
"slug": "jasprit-bumrah-prepares-for-a-bowl",
"url": "/db/PICTURES/CMS/341800/341881.5.jpg",
"width": 365,
"height": 205,
"caption": "Jasprit Bumrah prepares for a bowl",
"longCaption": "Jasprit Bumrah prepares for a bowl, Birmingham, June 29, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/341800/341881.jpg",
"WIDE": "/db/PICTURES/CMS/341800/341881.6.jpg",
"SQUARE": "/db/PICTURES/CMS/341800/341881.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:29:55.878Z"
},
{
"id": 308243,
"objectId": 1337465,
"scribeId": 34696757,
"slug": "t20-world-cup-2022-india-sourav-ganguly-says-jasprit-bumrah-is-not-out-of-the-t20-world-cup-yet",
"title": "Ganguly: Bumrah is not out of the T20 World Cup yet",
"subTitle": "",
"seoTitle": "T20 World Cup 2022 - India - Sourav Ganguly says Jasprit Bumrah is not out of the T20 World Cup yet",
"summary": "The BCCI president added that a final decision could be taken in the \"next two or three days\"",
"byline": "Nagraj Gollapudi",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-09-30T17:14:00.000Z",
"modifiedAt": "2022-09-30T17:24:35.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 23,
"image": {
"id": 346576,
"objectId": 1336523,
"slug": "jasprit-bumrah-conceded-fifty-runs-in-his-four-over-spell",
"url": "/db/PICTURES/CMS/346500/346576.5.jpg",
"width": 365,
"height": 205,
"caption": "Jasprit Bumrah conceded fifty runs in his four-over spell",
"longCaption": "Jasprit Bumrah conceded fifty runs in his four-over spell, India vs Australia, 3rd T20I, Hyderabad, September 25, 2022\n",
"credit": "BCCI",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346500/346576.jpg",
"WIDE": "/db/PICTURES/CMS/346500/346576.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346500/346576.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:32:56.971Z"
},
{
"id": 308222,
"objectId": 1337383,
"scribeId": 34694033,
"slug": "jasprit-bumrah-stress-fracture-in-the-back-timeline-of-bumrahs-injuries-in-last-four-years",
"title": "Timeline - how injuries have kept Bumrah out in the last four years",
"subTitle": "",
"seoTitle": "Jasprit Bumrah stress fracture in the back - timeline of Bumrah's injuries in last four years",
"summary": "The Indian quick has had a bad time with injuries in the recent past, and recurrence of the back injury isn't the best sign",
"byline": "Shashank Kishore",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-09-30T08:37:00.000Z",
"modifiedAt": "2022-09-30T13:20:02.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 667,
"image": {
"id": 332081,
"objectId": 1293794,
"slug": "jasprit-bumrah-trains-in-pretoria",
"url": "/db/PICTURES/CMS/332000/332081.5.jpg",
"width": 365,
"height": 205,
"caption": "Jasprit Bumrah trains in Pretoria",
"longCaption": "Jasprit Bumrah trains in Pretoria, Pretoria, December 19, 2021",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/332000/332081.jpg",
"WIDE": "/db/PICTURES/CMS/332000/332081.6.jpg",
"SQUARE": "/db/PICTURES/CMS/332000/332081.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:26:31.090Z"
},
{
"id": 308196,
"objectId": 1337189,
"scribeId": 34688631,
"slug": "t20-world-cup-2022-big-question-mark-over-injured-jasprit-bumrah",
"title": "Injured Jasprit Bumrah in doubt for the T20 World Cup",
"subTitle": "",
"seoTitle": "T20 World Cup 2022 - Big question mark over injured Jasprit Bumrah for the T20 World Cup",
"summary": "Fast bowler to undergo fresh scans; final call on World Cup participation likely after a few days as medical team gauges fastest recovery period",
"byline": "ESPNcricinfo staff",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-09-29T09:55:00.000Z",
"modifiedAt": "2022-09-29T13:09:00.000Z",
"showPublishedAt": true,
"showModifiedAt": true,
"day": null,
"authorId": 1,
"image": {
"id": 342544,
"objectId": 1324306,
"slug": "jasprit-bumrah-s-six-wicket-haul-rolled-england-over-for-110",
"url": "/db/PICTURES/CMS/342500/342544.5.jpg",
"width": 365,
"height": 205,
"caption": "Jasprit Bumrah's six-wicket haul rolled England over for 110 ",
"longCaption": "Jasprit Bumrah's six-wicket haul rolled England over for 110, England vs India, 1st ODI, The Oval, London, July 12, 2022",
"credit": "Associated Press",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/342500/342544.jpg",
"WIDE": "/db/PICTURES/CMS/342500/342544.6.jpg",
"SQUARE": "/db/PICTURES/CMS/342500/342544.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:32:48.249Z"
},
{
"id": 308263,
"objectId": 1337595,
"scribeId": 34701383,
"slug": "asia-cup-2022-ind-vs-sl-jemimah-rodrigues-rich-form-could-springboard-her-towards-fulfilling-potential-greatness",
"title": "Red-hot Jemimah Rodrigues resumes road to greatness without missing a beat",
"subTitle": "",
"seoTitle": "Asia Cup 2022, Ind vs SL, Jemimah Rodrigues' rich form could springboard her towards fulfilling potential greatness",
"summary": "Coming back from injury, she lit up India's Asia Cup campaign with a career-best 76 that featured all her trademark shots",
"byline": "S Sudarshanan",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-10-01T14:17:00.000Z",
"modifiedAt": "2022-10-01T14:51:13.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 775,
"image": {
"id": 346837,
"objectId": 1337553,
"slug": "jemimah-rodrigues-raises-her-bat-after-reaching-a-half-century",
"url": "/db/PICTURES/CMS/346800/346837.5.jpg",
"width": 365,
"height": 205,
"caption": "Jemimah Rodrigues raises her bat after reaching a half-century",
"longCaption": "Jemimah Rodrigues raises her bat after reaching a half-century, India vs Sri Lanka, Women's Asia Cup, Sylhet, October 1, 2022",
"credit": "ACC",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346837.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346837.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346837.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:28:40.227Z"
},
{
"id": 308254,
"objectId": 1337543,
"scribeId": 34699737,
"slug": "womens-asia-cup-2022-ind-vs-sl-rodrigues-stars-with-76-in-india-s-convincing-win",
"title": "Rodrigues stars with 76 in India's convincing win ",
"subTitle": "",
"seoTitle": "Womens Asia Cup 2022 - Ind vs SL - Rodrigues stars with 76 in India's convincing win ",
"summary": "Regular wickets meant Sri Lanka never got close in their chase of 151",
"byline": "S Sudarshanan",
"categoryType": "OTHERS",
"genreType": "REPORT",
"genreId": 3,
"genreName": "Report",
"publishedAt": "2022-10-01T07:26:00.000Z",
"modifiedAt": "2022-10-01T14:04:28.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 775,
"image": {
"id": 346837,
"objectId": 1337553,
"slug": "jemimah-rodrigues-raises-her-bat-after-reaching-a-half-century",
"url": "/db/PICTURES/CMS/346800/346837.5.jpg",
"width": 365,
"height": 205,
"caption": "Jemimah Rodrigues raises her bat after reaching a half-century",
"longCaption": "Jemimah Rodrigues raises her bat after reaching a half-century, India vs Sri Lanka, Women's Asia Cup, Sylhet, October 1, 2022",
"credit": "ACC",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346837.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346837.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346837.10.jpg"
}
},
"matchMeta": {
"id": 107001,
"objectId": 1335786,
"scribeId": 1335786,
"slug": "india-women-vs-sri-lanka-women-2nd-match",
"seriesId": 14984,
"seriesObjectId": 1335753,
"seriesSlug": "women-s-asia-cup-2022-23"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:31:15.216Z"
},
{
"id": 308195,
"objectId": 1337188,
"scribeId": 34689084,
"slug": "all-you-need-to-know-about-the-women-s-asia-cup-2022-the-who-what-when-and-where-of-the-tournament",
"title": "All you need to know about the Women's Asia Cup 2022",
"subTitle": "",
"seoTitle": "All you need to know about the Women's Asia Cup 2022 - the who, what, when and where of the tournament ",
"summary": "Who are the teams? What is the format? Matches to look forward to? Find answers to all of that here",
"byline": "S Sudarshanan",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-09-29T11:58:00.000Z",
"modifiedAt": "2022-09-30T03:04:01.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 775,
"image": {
"id": 277213,
"objectId": 1148999,
"slug": "bangladesh-s-post-match-revelry",
"url": "/db/PICTURES/CMS/277200/277213.5.jpg",
"width": 365,
"height": 205,
"caption": "Bangladesh's post-match revelry",
"longCaption": "Bangladesh's post-match revelry, India v Bangladesh, women's Asia Cup final. Kuala Lumpur",
"credit": "ACC",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/277200/277213.jpg",
"WIDE": "/db/PICTURES/CMS/277200/277213.6.jpg",
"SQUARE": "/db/PICTURES/CMS/277200/277213.12.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:29:27.197Z"
},
{
"id": 308246,
"objectId": 1337489,
"scribeId": 34698393,
"slug": "ellyse-perry-sees-silver-lining-from-bowling-lay-off-as-new-challenges-await",
"title": "Perry sees 'silver lining' from bowling lay-off as new challenges await",
"subTitle": "",
"seoTitle": "Ellyse Perry sees 'silver lining' from bowling lay-off as new challenges await",
"summary": "The allrounder's form with the bat in WBBL will be key to whether she can return to Australia's T20 side",
"byline": "Andrew McGlashan",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-10-01T01:35:00.000Z",
"modifiedAt": "2022-10-01T01:38:09.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 7,
"image": {
"id": 346539,
"objectId": 1336445,
"slug": "ellyse-perry-returned-to-the-bowling-crease-for-the-first-time-since-march",
"url": "/db/PICTURES/CMS/346500/346539.5.jpg",
"width": 365,
"height": 205,
"caption": "Ellyse Perry returned to the bowling crease for the first time since March",
"longCaption": "Ellyse Perry returned to the bowling crease for the first time since March, Victoria vs South Australia, WNCL, Karen Rolton Oval, September 25, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346500/346539.14.jpg",
"WIDE": "/db/PICTURES/CMS/346500/346539.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346500/346539.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:27:31.388Z"
},
{
"id": 308262,
"objectId": 1337592,
"scribeId": 34701097,
"slug": "t20-world-cup-india-coach-rahul-dravid-still-awaiting-official-confirmation-of-the-extent-of-jasprit-bumrahs-injury",
"title": "Dravid still awaiting official confirmation of the extent of Bumrah's injury",
"subTitle": "",
"seoTitle": "T20 World Cup - India coach Rahul Dravid still awaiting official confirmation of the extent of Jasprit Bumrahs injury",
"summary": "With less than a month till their first match at the T20 World Cup, India are sweating the fitness of their strike bowler",
"byline": "ESPNcricinfo staff",
"categoryType": "OTHERS",
"genreType": "NEWS",
"genreId": 1,
"genreName": "News",
"publishedAt": "2022-10-01T13:35:00.000Z",
"modifiedAt": "2022-10-01T16:02:57.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 1,
"image": {
"id": 341881,
"objectId": 1322515,
"slug": "jasprit-bumrah-prepares-for-a-bowl",
"url": "/db/PICTURES/CMS/341800/341881.5.jpg",
"width": 365,
"height": 205,
"caption": "Jasprit Bumrah prepares for a bowl",
"longCaption": "Jasprit Bumrah prepares for a bowl, Birmingham, June 29, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/341800/341881.jpg",
"WIDE": "/db/PICTURES/CMS/341800/341881.6.jpg",
"SQUARE": "/db/PICTURES/CMS/341800/341881.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:29:55.878Z"
},
{
"id": 308254,
"objectId": 1337543,
"scribeId": 34699737,
"slug": "womens-asia-cup-2022-ind-vs-sl-rodrigues-stars-with-76-in-india-s-convincing-win",
"title": "Rodrigues stars with 76 in India's convincing win ",
"subTitle": "",
"seoTitle": "Womens Asia Cup 2022 - Ind vs SL - Rodrigues stars with 76 in India's convincing win ",
"summary": "Regular wickets meant Sri Lanka never got close in their chase of 151",
"byline": "S Sudarshanan",
"categoryType": "OTHERS",
"genreType": "REPORT",
"genreId": 3,
"genreName": "Report",
"publishedAt": "2022-10-01T07:26:00.000Z",
"modifiedAt": "2022-10-01T14:04:28.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 775,
"image": {
"id": 346837,
"objectId": 1337553,
"slug": "jemimah-rodrigues-raises-her-bat-after-reaching-a-half-century",
"url": "/db/PICTURES/CMS/346800/346837.5.jpg",
"width": 365,
"height": 205,
"caption": "Jemimah Rodrigues raises her bat after reaching a half-century",
"longCaption": "Jemimah Rodrigues raises her bat after reaching a half-century, India vs Sri Lanka, Women's Asia Cup, Sylhet, October 1, 2022",
"credit": "ACC",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346837.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346837.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346837.10.jpg"
}
},
"matchMeta": {
"id": 107001,
"objectId": 1335786,
"scribeId": 1335786,
"slug": "india-women-vs-sri-lanka-women-2nd-match",
"seriesId": 14984,
"seriesObjectId": 1335753,
"seriesSlug": "women-s-asia-cup-2022-23"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:31:15.216Z"
},
{
"id": 308247,
"objectId": 1337499,
"scribeId": 34698740,
"slug": "cpl-2022-final-br-vs-jt-brandon-king-83-leads-tallawahs-to-title-after-fabian-allen-nicholson-gordon-three-fors",
"title": "King slams 83* to lead Tallawahs to third CPL title after Allen, Gordon three-fors set up chase",
"subTitle": "",
"seoTitle": "CPL 2022 final - BR vs JT - Brandon King 83 leads Tallawahs to title after Fabian Allen Nicholson Gordon three-fors",
"summary": "Favourites Royals tripped at the final hurdle despite solid knocks from Azam Khan and Rahkeem Cornwall",
"byline": "Deivarayan Muthu",
"categoryType": "OTHERS",
"genreType": "REPORT",
"genreId": 3,
"genreName": "Report",
"publishedAt": "2022-10-01T02:53:00.000Z",
"modifiedAt": "2022-10-01T04:24:58.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 651,
"image": {
"id": 346820,
"objectId": 1337505,
"slug": "jamaica-tallawahs-won-their-third-cpl-trophy",
"url": "/db/PICTURES/CMS/346800/346820.6.jpg",
"width": 1296,
"height": 729,
"caption": "Jamaica Tallawahs won their third CPL trophy",
"longCaption": "Jamaica Tallawahs won their third CPL trophy, Barbados Royals vs Jamaica Tallawahs, CPL 2022 final, Providence, September 30, 2022",
"credit": "CPL T20 via Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346820.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346820.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346820.10.jpg"
}
},
"matchMeta": {
"id": 105343,
"objectId": 1323177,
"scribeId": 1323177,
"slug": "barbados-royals-vs-jamaica-tallawahs-final",
"seriesId": 14723,
"seriesObjectId": 1320379,
"seriesSlug": "caribbean-premier-league-2022"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:27:40.769Z"
},
{
"id": 308249,
"objectId": 1337511,
"scribeId": 34699779,
"slug": "wncl-2022-23-queensland-batter-laura-harris-creates-wncl-history-with-50-ball-century",
"title": "Laura Harris creates WNCL history with 50-ball century",
"subTitle": "",
"seoTitle": "WNCL 2022-23 - Queensland batter Laura Harris creates WNCL history with 50-ball century",
"summary": "Harris' record innings helped Queensland claim a comfortable win over ACT in a rain-reduced game",
"byline": "ESPNcricinfo staff",
"categoryType": "OTHERS",
"genreType": "REPORT",
"genreId": 3,
"genreName": "Report",
"publishedAt": "2022-10-01T07:58:00.000Z",
"modifiedAt": "2022-10-01T08:11:34.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 1,
"image": {
"id": 346819,
"objectId": 1337504,
"slug": "laura-harris-celebrates-the-fastest-ever-century-in-wncl-history-off-just-50-balls",
"url": "/db/PICTURES/CMS/346800/346819.5.jpg",
"width": 365,
"height": 205,
"caption": "Laura Harris celebrates the fastest ever century in WNCL history off just 50 balls",
"longCaption": "Laura Harris celebrates the fastest ever century in WNCL history off just 50 balls, Queensland vs ACT, WNCL, Gold Coast, October 1, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346819.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346819.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346819.10.jpg"
}
},
"matchMeta": {
"id": 105273,
"objectId": 1322434,
"scribeId": 1322434,
"slug": "queensland-women-vs-australian-capital-territory-women-8th-match",
"seriesId": 14810,
"seriesObjectId": 1322373,
"seriesSlug": "women-s-national-cricket-league-2022-23"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:30:52.924Z"
},
{
"id": 308264,
"objectId": 1337600,
"scribeId": 34701452,
"slug": "irani-cup-2022-23-sarfaraz-khan-s-ton-drives-rest-of-india-after-mukesh-kumar-and-co-fold-saurashtra-for-98",
"title": "Sarfaraz ton drives Rest of India after Mukesh and Co fold Saurashtra for 98",
"subTitle": "",
"seoTitle": "Irani Cup 2022-23 - Sarfaraz Khan's ton drives Rest of India after Mukesh Kumar and Co fold Saurashtra for 98",
"summary": "Coming in at 18 for 3, Sarfaraz added 187 in an unbroken fourth-wicket stand with Vihari",
"byline": "PTI",
"categoryType": "OTHERS",
"genreType": "REPORT",
"genreId": 3,
"genreName": "Report",
"publishedAt": "2022-10-01T14:32:00.000Z",
"modifiedAt": "2022-10-01T18:53:06.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": 1,
"authorId": 759,
"image": {
"id": 346848,
"objectId": 1337596,
"slug": "sarfaraz-khan-raises-his-century",
"url": "/db/PICTURES/CMS/346800/346848.5.jpg",
"width": 365,
"height": 205,
"caption": "Sarfaraz Khan raises his century",
"longCaption": "Sarfaraz Khan raises his century, Saurashtra vs Rest Of India, Irani Cup, 1st day, Rajkot, October 1, 2022 ",
"credit": "PTI ",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346848.14.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346848.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346848.10.jpg"
}
},
"matchMeta": {
"id": 106160,
"objectId": 1332470,
"scribeId": 1332470,
"slug": "saurashtra-vs-rest-of-india",
"seriesId": 14924,
"seriesObjectId": 1332469,
"seriesSlug": "irani-trophy-2022-23"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:34:39.748Z"
},
{
"id": 307279,
"objectId": 1331961,
"scribeId": 34500994,
"slug": "ind-a-vs-nz-a-1st-unofficial-test-mukesh-kumar-s-old-school-virtues-make-immediate-impact-on-india-a-debut",
"title": "Mukesh Kumar's old-school virtues make immediate impact on India A debut",
"subTitle": "",
"seoTitle": "Ind A vs NZ A - 1st Unofficial Test - Mukesh Kumar's old-school virtues make immediate impact on India A debut",
"summary": "He made the batters play more often than his seam-bowling colleagues, and ended the day with three key wickets",
"byline": "Daya Sagar",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-09-01T14:51:00.000Z",
"modifiedAt": "2022-09-03T12:21:12.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": 1,
"authorId": 767,
"image": {
"id": 345247,
"objectId": 1332163,
"slug": "mukesh-kumar-finished-with-figures-of-5-for-86",
"url": "/db/PICTURES/CMS/345200/345247.5.jpg",
"width": 365,
"height": 205,
"caption": "Mukesh Kumar finished with figures of 5 for 86",
"longCaption": "Mukesh Kumar finished with figures of 5 for 86, India A vs New Zealand A, 1st unofficial Test, 2nd day, Bengaluru, September 2, 2022",
"credit": "Mallikarjuna/KSCA",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/345200/345247.14.jpg",
"WIDE": "/db/PICTURES/CMS/345200/345247.6.jpg",
"SQUARE": "/db/PICTURES/CMS/345200/345247.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:33:52.617Z"
},
{
"id": 308259,
"objectId": 1337583,
"scribeId": 34702442,
"slug": "pak-vs-eng-7th-t20i-ben-duckett-i-found-it-funny-when-people-said-i-couldn-t-play-spin",
"title": "Duckett: 'I found it funny when people said I couldn't play spin'",
"subTitle": "",
"seoTitle": "Pak vs Eng, 7th T20I - Ben Duckett - 'I found it funny when people said I couldn't play spin'",
"summary": "He had a torrid time against Ashwin during the 2016 Test series. But on the current tour, he has struck at 168.57 against spin",
"byline": "Matt Roller",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-10-01T17:00:00.000Z",
"modifiedAt": "2022-10-01T17:06:39.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 749,
"image": {
"id": 346403,
"objectId": 1336025,
"slug": "ben-duckett-was-proactive-with-the-sweep-and-reverse-sweep",
"url": "/db/PICTURES/CMS/346400/346403.5.jpg",
"width": 365,
"height": 205,
"caption": "Ben Duckett was proactive with the sweep and reverse-sweep",
"longCaption": "Ben Duckett was proactive with the sweep and reverse-sweep, Pakistan vs England, 2nd T20I, Karachi, September 22, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346400/346403.14.jpg",
"WIDE": "/db/PICTURES/CMS/346400/346403.jpg",
"SQUARE": "/db/PICTURES/CMS/346400/346403.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:32:14.925Z"
},
{
"id": 308267,
"objectId": 1337618,
"scribeId": 34702427,
"slug": "pak-vs-eng-7th-t20i-pakistan-and-england-set-for-knockout-flavour-ahead-of-t20-world-cup",
"title": "Pakistan and England set for knockout flavour ahead of T20 World Cup",
"subTitle": "",
"seoTitle": "Pak vs Eng, 7th T20I - Pakistan and England set for knockout flavour ahead of T20 World Cup",
"summary": "Heading into the final T20I, the two sides find themselves level despite playing entirely different brands of cricket",
"byline": "Danyal Rasool",
"categoryType": "OTHERS",
"genreType": "PREVIEW",
"genreId": 2,
"genreName": "Preview",
"publishedAt": "2022-10-01T16:48:00.000Z",
"modifiedAt": "2022-10-01T19:07:14.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 689,
"image": {
"id": 346728,
"objectId": 1337121,
"slug": "haris-rauf-claimed-the-first-ball-wicket-of-phil-salt",
"url": "/db/PICTURES/CMS/346700/346728.5.jpg",
"width": 365,
"height": 205,
"caption": "Haris Rauf claimed the first-ball wicket of Phil Salt",
"longCaption": "Haris Rauf claimed the first-ball wicket of Phil Salt, Pakistan vs England, 5th T20I, Lahore, September 28, 2022",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346700/346728.jpg",
"WIDE": "/db/PICTURES/CMS/346700/346728.6.jpg",
"SQUARE": "/db/PICTURES/CMS/346700/346728.10.jpg"
}
},
"matchMeta": {
"id": 105640,
"objectId": 1327234,
"scribeId": 1327234,
"slug": "pakistan-vs-england-7th-t20i",
"seriesId": 14844,
"seriesObjectId": 1327226,
"seriesSlug": "england-in-pakistan-2022"
},
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:32:04.305Z"
},
{
"id": 308256,
"objectId": 1337567,
"scribeId": 34700167,
"slug": "eng-tour-of-pak-2022-lahore-s-bagh-e-jinnah-lost-in-time-lost-to-a-bottom-line-driven-game",
"title": "Lahore's Bagh-e-Jinnah - lost in time, lost to a bottom line-driven game",
"subTitle": "",
"seoTitle": "Eng tour of Pak 2022 - Lahore's Bagh-e-Jinnah - lost in time, lost to a bottom line-driven game",
"summary": "The relentless calendar has taken away the teams' opportunities to see another side of a country and engage with its cricketing heritage",
"byline": "Matt Roller",
"categoryType": "OTHERS",
"genreType": "FEATURE",
"genreId": 18,
"genreName": "Feature",
"publishedAt": "2022-10-01T10:17:00.000Z",
"modifiedAt": "2022-10-01T10:41:24.000Z",
"showPublishedAt": true,
"showModifiedAt": false,
"day": null,
"authorId": 749,
"image": {
"id": 346839,
"objectId": 1337565,
"slug": "james-anderson-attempts-a-run-out-at-the-tour-game-at-the-bagh-e-jinnah",
"url": "/db/PICTURES/CMS/346800/346839.8.jpg",
"width": 1296,
"height": 729,
"caption": "James Anderson attempts a run-out at the tour game at the Bagh-e-Jinnah",
"longCaption": "James Anderson attempts a run-out at the tour game at the Bagh-e-Jinnah, Lahore, December 7, 2005",
"credit": "Getty Images",
"photographer": null,
"peerUrls": {
"FILM": "/db/PICTURES/CMS/346800/346839.jpg",
"WIDE": "/db/PICTURES/CMS/346800/346839.8.jpg",
"SQUARE": "/db/PICTURES/CMS/346800/346839.10.jpg"
}
},
"matchMeta": null,
"isLiveBlog": false,
"isLive": false,
"language": "en",
"generatedAt": "2022-10-02T03:33:50.141Z"
}
],
"matches": [
{
"_uid": 106958,
"id": 106958,
"objectId": 1335431,
"scribeId": 1335431,
"slug": "mountaineers-vs-southern-rocks",
"stage": "FINISHED",
"state": "POST",
"internationalClassId": null,
"generalClassId": 4,
"subClassId": null,
"season": "2022/23",
"title": "",
"floodlit": "day",
"startDate": "2022-12-18T00:00:00.000Z",
"endDate": "2022-12-21T00:00:00.000Z",
"startTime": "2022-12-18T08:00:00.000Z",
"timePublished": true,
"scheduleNote": "",
"isCancelled": false,
"coverage": "Y",
"coverageNote": "",
"liveStreamUrl": null,
"highlightsUrl": null,
"status": "RESULT",
"statusText": "Mountaineers won by 305 runs",
"statusEng": "RESULT",
"internationalNumber": null,
"generalNumber": null,
"winnerTeamId": 4594,
"tossWinnerTeamId": 4593,
"tossWinnerChoice": 2,
"resultStatus": 1,
"liveInning": 4,
"liveInningPredictions": null,
"ballsPerOver": null,