-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathindex.json
1327 lines (1327 loc) · 52.3 KB
/
index.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
{
"metadata": {
"id": "urn:bbc:ares::index:igbo/front_page/desktop/domestic",
"locators": {
"assetUri": "/igbo/front_page",
"cpsUrn": "urn:bbc:content:assetUri:igbo/front_page",
"curie": "http://www.bbc.co.uk/asset/5bd45b9a-0179-dda0-e050-17ac2b8cff4f/desktop/domestic"
},
"type": "IDX",
"createdBy": "igbo-v6",
"language": "ig",
"lastUpdated": 1561382058565,
"firstPublished": 1508340675,
"lastPublished": 1561382049,
"options": {
"allowAdvertising": true
},
"analyticsLabels": {
"counterName": "igbo.page",
"cps_asset_id": "23158964",
"cps_asset_type": "idx"
},
"tags": {},
"version": "v1.0.10",
"blockTypes": [
"responsive-top-stories",
"responsive-cluster",
"responsive-must-see",
"responsive-inspire",
"responsive-in-depth"
],
"title": "Ogbako",
"summary": "BBC News Igbo na-agbasa akụkọ sị Naịjirịa, Afịrịka na mba ụwa niile... Ihe na-eme ugbua gbasara akụkọ, egwuregwu, ihe nkiri na ihe na-ewu ewu... BBC Nkeji."
},
"content": {
"groups": [
{
"type": "responsive-top-stories",
"title": "Top Stories",
"items": [
{
"headlines": {
"headline": "DSS: Wepụ aka enwe n'ofe na Benue"
},
"locators": {
"assetUri": "/igbo/23182501",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182501"
},
"summary": "DSS achọpụtala n'aka ndị ISS dị na mkpamkpa nke na-akpa na Naijirịa ugbua nke gosiri na ọbughị nanị ndị Fulani na-achụ ehị na-kpa arụa",
"timestamp": 1516605810000,
"cpsType": "STY",
"indexImage": {
"id": "63652794",
"subType": "index",
"href": "http://b.files.bbci.co.uk/C23D/test/_63652794_hi043976049.jpg",
"path": "/cpsdevpb/C23D/test/_63652794_hi043976049.jpg",
"height": 549,
"width": 976,
"altText": "DSS na Benue Steeti",
"caption": "Ndị Benue e werela anya ha hụ ntị ha n'aka ndị Fulanị na-Achụ ehị",
"copyrightHolder": "PIUS UTOMI EKPEI"
},
"imageThumbnail": {
"id": "63652744",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/AEB5/test/_63652744_hi043976300.jpg",
"path": "/cpsdevpb/AEB5/test/_63652744_hi043976300.jpg",
"height": 180,
"width": 320,
"altText": "DSS na Benue Steeti",
"caption": "Peter Zion na akọ ka ya ihe siri ga n'aka ndị Fulani na-achụ ehi",
"copyrightHolder": "Reuters"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"prominence": "standard",
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"overtypedSummary": "DSS achọpụtala n'aka ndị ISIS dị na mkpamkpa nke na-akpa na Naijirịa ugbua nke gosiri na ọbughị nanị ndị Fulani na-achụ ehị na-kpa arụa",
"id": "urn:bbc:ares::asset:igbo/23182501",
"type": "cps"
},
{
"headlines": {
"headline": "Akụkọ BBC Igbo na Nkeji"
},
"locators": {
"assetUri": "/igbo/23183171",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23183171"
},
"summary": "Akụkọ ihe na-eme n'ụwa niile",
"timestamp": 1516641902000,
"cpsType": "MAP",
"media": {
"id": "p01g1tyl",
"subType": "clip",
"format": "audio",
"title": "Akụkọ BBC Igbo na Nkeji",
"synopses": {
"short": "Akụkọ ihe na-eme n'ụwa niile"
},
"imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01g1v11.jpg",
"embedding": true,
"advertising": true,
"caption": "Akụkọ ihe na-eme n'ụwa niile",
"versions": [
{
"versionId": "p01g1tyr",
"types": [
"Original"
],
"duration": 58,
"durationISO8601": "PT58S",
"warnings": {},
"availableTerritories": {
"uk": true,
"nonUk": true
},
"availableFrom": 1516641499
}
]
},
"indexImage": {
"id": "63652934",
"subType": "index",
"href": "http://b.files.bbci.co.uk/AB95/test/_63652934_p01g1v11.jpg",
"path": "/cpsdevpb/AB95/test/_63652934_p01g1v11.jpg",
"height": 549,
"width": 976,
"altText": "Akụkọ ihe na-eme n'ụwa niile",
"caption": "Akụkọ BBC Igbo na Nkeji",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"prominence": "standard",
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23183171",
"type": "cps"
},
{
"headlines": {
"headline": "Ethiopia: Ndị uweojii agba gbuola ndị mmadụ"
},
"locators": {
"assetUri": "/igbo/23182895",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182895"
},
"summary": "Ndị uweojii gbara igwe ndị mmadụ egbe ebe ha n'ekwu okwu megidere Gọọmenti n'ihe mmemme otu okpukpere chi",
"timestamp": 1516567254000,
"cpsType": "STY",
"indexImage": {
"id": "63652644",
"subType": "index",
"href": "http://b.files.bbci.co.uk/AE51/test/_63652644_ethiopia.jpg",
"path": "/cpsdevpb/AE51/test/_63652644_ethiopia.jpg",
"height": 549,
"width": 976,
"altText": "Oruela afọ atọ ebidoro ihe gosịpụta nke megidere Goomenti na Ethiopia",
"caption": "Oruela afọ atọ ebidoro ihe gosịpụta nke megidere Goomenti na Ethiopia",
"copyrightHolder": "Getty Images"
},
"imageThumbnail": {
"id": "63652650",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/15F9/test/_63652650_ethiop.jpg",
"path": "/cpsdevpb/15F9/test/_63652650_ethiop.jpg",
"height": 180,
"width": 320,
"altText": "Akara ngosịpụta njem",
"caption": "Akara ngosịpụta njem",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"prominence": "standard",
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182895",
"type": "cps"
}
],
"strapline": {
"name": "Isi akụkọ"
},
"semanticGroupName": "Top Stories"
},
{
"type": "responsive-cluster",
"title": "Cluster 1",
"items": [
{
"headlines": {
"headline": "Nnamdi Kanu: \"Ndị gọọmenti na ndị soja ji ya\" - IPOB"
},
"locators": {
"assetUri": "/igbo/23182806",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182806"
},
"summary": "Emma Powerful kwuru na gọọmenti etiti ji Nnamdi Kanu maka na ọ na-enye ha nsogbu.",
"timestamp": 1516531779000,
"cpsType": "STY",
"indexImage": {
"id": "63652475",
"subType": "index",
"href": "http://b.files.bbci.co.uk/E051/test/_63652475_kanu.jpg",
"path": "/cpsdevpb/E051/test/_63652475_kanu.jpg",
"height": 549,
"width": 976,
"altText": "Nnamdi kanu",
"caption": "A maghí ebe Nnamdi kanu kamgbe ónwa September afó gara aga oge ndí agha wakporo be ya na Afara Ukwu Abia steeti.",
"copyrightHolder": "Getty AFP"
},
"imageThumbnail": {
"id": "63652477",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/12E71/test/_63652477_kanu.jpg",
"path": "/cpsdevpb/12E71/test/_63652477_kanu.jpg",
"height": 180,
"width": 320,
"altText": "Nnamdi kanu",
"caption": "A maghí ebe Nnamdi kanu kamgbe ónwa September afó gara aga oge ndí agha wakporo be ya na Afara Ukwu Abia steeti.",
"copyrightHolder": "Getty AFP"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182806",
"type": "cps"
},
{
"headlines": {
"headline": "Egbuola ndị na-eme ngagharị iwe na Congo"
},
"locators": {
"assetUri": "/igbo/23182881",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182881"
},
"summary": "Ịhe butere ngagharị iwe nke a bụ n'onye isi ala ha bụ President Joseph Kabila juru isi n'okwa ochịchị ritu mgbe oge ochịchị ya gafechara.",
"timestamp": 1516566938000,
"cpsType": "STY",
"indexImage": {
"id": "63652580",
"subType": "index",
"href": "http://b.files.bbci.co.uk/214D/test/_63652580_kabila2.jpg",
"path": "/cpsdevpb/214D/test/_63652580_kabila2.jpg",
"height": 351,
"width": 624,
"altText": "Ndị na-eme ngagharị iwe a ji rozari n'aka were na-azogbu",
"caption": "Ndị na-eme ngagharị iwe a ji rozari n'aka were na-azogbu",
"copyrightHolder": "Reuters"
},
"imageThumbnail": {
"id": "63652612",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/5479/test/_63652612_kabila2.jpg",
"path": "/cpsdevpb/5479/test/_63652612_kabila2.jpg",
"height": 180,
"width": 320,
"altText": "Ndị na-eme ngagharị iwe a ji rozari n'aka were na-azogbu",
"caption": "Ndị na-eme ngagharị iwe a ji rozari n'aka were na-azogbu",
"copyrightHolder": "Reuters"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182881",
"type": "cps"
},
{
"headlines": {
"headline": "\"Buhari buru ụzọ ziga ndị agha ka ha kwụsị arụ ndị ọchụ ehi na-akpa \"-Ohaneze Ndigbo"
},
"locators": {
"assetUri": "/igbo/23182800",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182800"
},
"summary": "Otu Ohaneze ndị Igbo, otu Afenifere na ndị Miyetti Allah ajụla otu gọọmenti etiti kpokọbara iji dozie esemokwu ndị ọchụ ehi butere",
"timestamp": 1516524819000,
"cpsType": "STY",
"indexImage": {
"id": "63652464",
"subType": "index",
"href": "http://b.files.bbci.co.uk/B559/test/_63652464_oss.jpg",
"path": "/cpsdevpb/B559/test/_63652464_oss.jpg",
"height": 549,
"width": 976,
"altText": "Yemi Osibanjo",
"caption": "Yemi Osibanjo bú onye isi kómiti ahú",
"copyrightHolder": "Osinbajo's Facebook page"
},
"imageThumbnail": {
"id": "63652466",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/10379/test/_63652466_oss.jpg",
"path": "/cpsdevpb/10379/test/_63652466_oss.jpg",
"height": 180,
"width": 320,
"altText": "Yemi Osibanjo",
"caption": "Yemi Osibanjo bú onye isi kómiti ahú",
"copyrightHolder": "Osinbajo's Facebook page"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182800",
"type": "cps"
},
{
"headlines": {
"headline": "Azọpụtala ụlọ oriri Kabul na aka ndị omekaome."
},
"locators": {
"assetUri": "/igbo/23182765",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182765"
},
"summary": "Akụkọ na-apụta kwuru na ndị agha Afghanistan azọpụtala ịhe ruru mmadụ otu nari na iri n'isii n'ụlọ oriri nọ na Kabul ndị omekaome wakporo",
"timestamp": 1516473648000,
"cpsType": "STY",
"indexImage": {
"id": "63652384",
"subType": "index",
"href": "http://b.files.bbci.co.uk/BCC5/test/_63652384_kabulhotel.jpg",
"path": "/cpsdevpb/BCC5/test/_63652384_kabulhotel.jpg",
"height": 549,
"width": 976,
"altText": "Ụlọ oriri nke Intercontinental bụ nke Steeti nwere",
"caption": "Ụlọ oriri nke Intercontinental bụ nke Steeti nwere",
"copyrightHolder": "BBC"
},
"imageThumbnail": {
"id": "63652390",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/246D/test/_63652390_afghan.jpg",
"path": "/cpsdevpb/246D/test/_63652390_afghan.jpg",
"height": 180,
"width": 320,
"altText": "Kabul bụ isi obodo Afgan",
"caption": "Kabul bụ isi obodo Afgan",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182765",
"type": "cps"
}
],
"strapline": {
"name": "Kọwaara m isi akụkọ"
},
"semanticGroupName": "Cluster 1"
},
{
"type": "responsive-must-see",
"title": "Section 1",
"items": [
{
"headlines": {
"headline": "Lee ihe Barcelona mere Real Betis"
},
"locators": {
"assetUri": "/igbo/23182930",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182930"
},
"summary": "Barcelona emerigo Real Betis na asọmpị La Liga",
"timestamp": 1516616034000,
"cpsType": "STY",
"indexImage": {
"id": "63652810",
"subType": "index",
"href": "http://b.files.bbci.co.uk/0721/test/_63652810_hi016761180.jpg",
"path": "/cpsdevpb/0721/test/_63652810_hi016761180.jpg",
"height": 549,
"width": 976,
"altText": "Lionel Messi",
"caption": "Messi nwere ọtụtụ ntuli ugo di ichiche",
"copyrightHolder": "AFP/Getty Images"
},
"imageThumbnail": {
"id": "63652822",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/5929/test/_63652822_hi016761180.jpg",
"path": "/cpsdevpb/5929/test/_63652822_hi016761180.jpg",
"height": 180,
"width": 320,
"altText": "Lionel Messi",
"caption": "Messi nwere ọtụtụ ntuli ugo di ichiche",
"copyrightHolder": "AFP/Getty Images"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182930",
"type": "cps"
},
{
"headlines": {
"headline": "Aubameyang nwere ike ifu ndị Arsenal ọnụ ego karịrị nderi pounds iri ise"
},
"locators": {
"assetUri": "/igbo/23182890",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182890"
},
"summary": "Agbu a ndị otu bọọlụ Arsenal na Dortmund ebidola mkparịta ụka maka azụma ahịa Aubameyang dịka ọ ga-abụ onye kacha oke ọnụ ahịa ndị Arsenal ga-azụ.",
"timestamp": 1516546303000,
"cpsType": "STY",
"indexImage": {
"id": "63652604",
"subType": "index",
"href": "http://b.files.bbci.co.uk/9EB1/test/_63652604_aubameyang.jpg",
"path": "/cpsdevpb/9EB1/test/_63652604_aubameyang.jpg",
"height": 549,
"width": 976,
"altText": "Aubameyang enyela ọkpụ goolu iri na atọ n'ime asọmpi iri na ise na oge a",
"caption": "Aubameyang enyela ọkpụ goolu iri na atọ n'ime asọmpi iri na ise na oge a",
"copyrightHolder": "Getty Images"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182890",
"type": "cps"
},
{
"headlines": {
"headline": "\"Alexis Sanchez ga-abanye Manchester united ma ọ buru na.....\" Wenger"
},
"locators": {
"assetUri": "/igbo/23182810",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182810"
},
"summary": "Onye nchikwa Arsenal ,Arsene wenger ekwuola na Alexis Sanchez ga-abanye Manchester United ma ọ buru na Henrikh Mkhitaryan bata otu Arsenal",
"timestamp": 1516523376000,
"cpsType": "STY",
"indexImage": {
"id": "63652456",
"subType": "index",
"href": "http://b.files.bbci.co.uk/FF91/test/_63652456_henrykandsanchez.jpg",
"path": "/cpsdevpb/FF91/test/_63652456_henrykandsanchez.jpg",
"height": 549,
"width": 976,
"altText": "Alexis Sanchez gawa Manchester United,Henrikh Mkhitaryan a bata Arsenal Fc",
"caption": "Alexis Sanchez gawa Manchester United,Henrikh Mkhitaryan a bata Arsenal Fc",
"copyrightHolder": "SANCHEZ AND HENRIKH'S TWITTER PAGE"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182810",
"type": "cps"
},
{
"headlines": {
"headline": "Dịka osi ga n'ime asọmpi Premier League"
},
"locators": {
"assetUri": "/igbo/23182766",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182766"
},
"summary": "Asọmpi Premier league ndị ụbọchị taa akwakọrọla ọnụ, a na wetara gi osi ga. ebe otu egwuregwu ndị ama ama nwetachara mmeri n'asọmpi ha.",
"timestamp": 1516479190000,
"cpsType": "STY",
"indexImage": {
"id": "63652413",
"subType": "index",
"href": "http://b.files.bbci.co.uk/7AC1/test/_63652413_arsenalwin.jpg",
"path": "/cpsdevpb/7AC1/test/_63652413_arsenalwin.jpg",
"height": 549,
"width": 976,
"altText": "Iwobi, Nacho,koscielny na Lacazette bụ ndị nyere Arsenal goolu",
"caption": "Iwobi, Nacho,koscielny na Lacazette bụ ndị nyere Arsenal goolu",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182766",
"type": "cps"
},
{
"headlines": {
"headline": "Djokovic enwela mmeri Agbanyeghị ihe mmerụ ahụ"
},
"locators": {
"assetUri": "/igbo/23182760",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182760"
},
"summary": "Onye ama ama n'egwuregwu teenisi bụ Novak Djokovic agafela na agba nke anọ n'ihe egwuregwu teenisi nke Australian Open.",
"timestamp": 1516453873000,
"cpsType": "STY",
"indexImage": {
"id": "63652259",
"subType": "index",
"href": "http://b.files.bbci.co.uk/173F9/test/_63652259_djokovuic.jpg",
"path": "/cpsdevpb/173F9/test/_63652259_djokovuic.jpg",
"height": 549,
"width": 976,
"altText": "Enyere Djokovic nleta ahụ maka mmerụ ahụ ukwu n'oge nke abụọ n'ime asọmpi ahụ",
"caption": "Enyere Djokovic nleta ahụ maka mmerụ ahụ ukwu n'oge nke abụọ n'ime asọmpi ahụ",
"copyrightHolder": "Getty Images"
},
"imageThumbnail": {
"id": "63652261",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/3F61/test/_63652261_djokovuic.jpg",
"path": "/cpsdevpb/3F61/test/_63652261_djokovuic.jpg",
"height": 180,
"width": 320,
"altText": "Enyere Djokovic nleta ahụ maka mmerụ ahụ ukwu n'oge nke abụọ n'ime asọmpi ahụ",
"caption": "Enyere Djokovic nleta ahụ maka mmerụ ahụ ukwu n'oge nke abụọ n'ime asọmpi ahụ",
"copyrightHolder": "Getty Images"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182760",
"type": "cps"
},
{
"headlines": {
"headline": "CHAN: Naịjirịa na Guinea nọ na ịrụ Group C"
},
"locators": {
"assetUri": "/igbo/23182710",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182710"
},
"summary": "Naịjirịa meriri Libya 1-0. Guinia meriri Equatorial Guinea 1-0 eji bụkọtara ndị isi na group C na CHAN",
"timestamp": 1516429672000,
"passport": {
"category": {
"categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/News",
"categoryName": "News"
}
},
"cpsType": "STY",
"indexImage": {
"id": "63652178",
"subType": "index",
"href": "http://b.files.bbci.co.uk/15455/test/_63652178__99669146_gettyimages-598982540.jpg",
"path": "/cpsdevpb/15455/test/_63652178__99669146_gettyimages-598982540.jpg",
"height": 549,
"width": 976,
"altText": "Salisu Yusuf",
"caption": "Salisu Yusuf bụ onye na akuzị ndi Super Eagles na CHAN",
"copyrightHolder": "Getty Images"
},
"imageThumbnail": {
"id": "63652179",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/17B65/test/_63652179__99669146_gettyimages-598982540.jpg",
"path": "/cpsdevpb/17B65/test/_63652179__99669146_gettyimages-598982540.jpg",
"height": 180,
"width": 320,
"altText": "Salisu Yusuf",
"caption": "Salisu Yusuf bụ onye na akuzị ndi Super Eagles na CHAN",
"copyrightHolder": "Getty Images"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182710",
"type": "cps"
}
],
"strapline": {
"name": "Egwuregwu"
},
"semanticGroupName": "Section 1"
},
{
"type": "responsive-inspire",
"title": "Section 2",
"items": [
{
"headlines": {
"headline": "Nne onye ọbụụ abụ 'Simi' achọtala ịhụnanya ọzọ"
},
"locators": {
"assetUri": "/igbo/23182882",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182882"
},
"summary": "Nwanyị bụ nne Simi, onye ọbụụ abụ na Naịjirịa lụrụ di ọhụrụ, ọ gbara ihe karịrị afọ iri ise mgbe ọ lụrụ di ọ hụrụ ahụ.",
"timestamp": 1516566059000,
"cpsType": "STY",
"indexImage": {
"id": "63652635",
"subType": "index",
"href": "http://b.files.bbci.co.uk/D179/test/_63652635_26264268_860597810775649_5403766764783796224_n-1.jpg",
"path": "/cpsdevpb/D179/test/_63652635_26264268_860597810775649_5403766764783796224_n-1.jpg",
"height": 549,
"width": 976,
"altText": "Simi, nne ya na dị ọhụrụ ya na ndị ụnọ ụka ha.",
"caption": "Simi, nne ya na dị ọhụrụ ya na ndị ụnọ ụka ha.",
"copyrightHolder": "@Thesamadeyemi/Instgram"
},
"imageThumbnail": {
"id": "63652637",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/11F99/test/_63652637_26264268_860597810775649_5403766764783796224_n-1.jpg",
"path": "/cpsdevpb/11F99/test/_63652637_26264268_860597810775649_5403766764783796224_n-1.jpg",
"height": 180,
"width": 320,
"altText": "Simi, nne ya na dị ọhụrụ ya na ndị ụnọ ụka ha.",
"caption": "Simi, nne ya na dị ọhụrụ ya na ndị ụnọ ụka ha.",
"copyrightHolder": "@Thesamadeyemi/Instgram"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182882",
"type": "cps"
},
{
"headlines": {
"headline": "Ndị nne na nna mmegbu California a gaala ụlọ ịkpe"
},
"locators": {
"assetUri": "/igbo/23182888",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182888"
},
"summary": "Ndị ejidere tụnyere ụmụ ha nga agala ụlọ ịkpe maka mmegbu ha megburu ụmụaka ha ruru iri na atọ n'ọnụ ọgụgụ",
"timestamp": 1516566413000,
"cpsType": "MAP",
"media": {
"id": "p01g18qd",
"subType": "clip",
"format": "video",
"title": "Ndị nne na nna California a gaala ụlọ ịkpe",
"synopses": {
"short": "Ndị ejidere tụnyere ụmụ ha nga agala ụlọ ịkpe",
"medium": "Ndị ejidere tụnyere ụmụ ha nga agala ụlọ ịkpe"
},
"imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01g18tx.jpg",
"embedding": true,
"advertising": true,
"caption": "Ndị nne na nna California a gaala ụlọ ịkpe",
"versions": [
{
"versionId": "p01g18qh",
"types": [
"Original"
],
"duration": 85,
"durationISO8601": "PT1M25S",
"warnings": {},
"availableTerritories": {
"uk": true,
"nonUk": true
},
"availableFrom": 1516565568
}
]
},
"indexImage": {
"id": "63652698",
"subType": "index",
"href": "http://b.files.bbci.co.uk/15E19/test/_63652698_p01g18rb.jpg",
"path": "/cpsdevpb/15E19/test/_63652698_p01g18rb.jpg",
"height": 576,
"width": 1024,
"altText": "Keyframe #2",
"caption": "Ndị nne na nna mmegbu California a gaala ụlọ ịkpe",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182888",
"type": "cps"
},
{
"headlines": {
"headline": "Onye isi ala ndị New Zealand dị ime"
},
"locators": {
"assetUri": "/igbo/23182843",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182843"
},
"summary": "Jacinda Arden na dị ya Clarke sị na ọ dị ha oke mkpa ịbụ nne na nna.",
"timestamp": 1516541460000,
"cpsType": "MAP",
"media": {
"id": "p01g16yr",
"subType": "clip",
"format": "video",
"title": "Onye isi ala dị ime",
"synopses": {
"short": "nwaanyị onye isi ala mba New Zealand dị ime ọ ga-amụ n'ọnwa Juune"
},
"imageUrl": "ichef.test.bbci.co.uk/images/ic/$recipe/p01g170j.jpg",
"embedding": true,
"advertising": true,
"caption": "nwaanyị onye isi ala mba New Zealand dị ime ọ ga-amụ n'ọnwa Juune",
"versions": [
{
"versionId": "p01g16yt",
"types": [
"Original"
],
"duration": 90,
"durationISO8601": "PT1M30S",
"warnings": {},
"availableTerritories": {
"uk": true,
"nonUk": true
},
"availableFrom": 1516533965
}
]
},
"indexImage": {
"id": "63652505",
"subType": "index",
"href": "http://b.files.bbci.co.uk/C55D/test/_63652505_p01g170j.jpg",
"path": "/cpsdevpb/C55D/test/_63652505_p01g170j.jpg",
"height": 576,
"width": 1024,
"altText": "Keyframe #3",
"caption": "Onye isi ala mba New Zealand na di ya",
"copyrightHolder": "BBC"
},
"imageThumbnail": {
"id": "63652507",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/1137D/test/_63652507_p01g170j.jpg",
"path": "/cpsdevpb/1137D/test/_63652507_p01g170j.jpg",
"height": 180,
"width": 320,
"altText": "Keyframe #3",
"caption": "Onye isi ala mba New Zealand na di ya",
"copyrightHolder": "BBC"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182843",
"type": "cps"
},
{
"headlines": {
"headline": "Yabasị a na-achụ TB ọsọ"
},
"locators": {
"assetUri": "/igbo/23182730",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182730"
},
"summary": "Ụfọdụ akụrụngwa dị otu ụdị yabasị a na-akpọ Persian shallot nwere ike inye aka kwalite ahụ ike na ihe na-aluso nje ọgụ.",
"timestamp": 1516432777000,
"byline": {
"name": "Chimezie Ucheagbo",
"title": "BBC Igbo Service",
"persons": [
{
"name": "Chimezie Ucheagbo",
"function": "BBC Igbo Service"
}
]
},
"cpsType": "STY",
"indexImage": {
"id": "63652188",
"subType": "index",
"href": "http://b.files.bbci.co.uk/1583D/test/_63652188_onion.jpg",
"path": "/cpsdevpb/1583D/test/_63652188_onion.jpg",
"height": 549,
"width": 976,
"altText": "Yabasi",
"caption": "A na-eji ụdi yabasi a esi nri na mba Iran.",
"copyrightHolder": "Getty Images"
},
"imageThumbnail": {
"id": "63652189",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/17F4D/test/_63652189_onion.jpg",
"path": "/cpsdevpb/17F4D/test/_63652189_onion.jpg",
"height": 180,
"width": 320,
"altText": "Yabasi",
"caption": "A na-eji udi yabasi a esi nri na mba Iran.",
"copyrightHolder": "Getty Images"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182730",
"type": "cps"
},
{
"headlines": {
"headline": "Kedụ ihe ọ na-eri ịgba akwụkwọ Katolik na Naijiria?"
},
"locators": {
"assetUri": "/igbo/23182570",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182570"
},
"summary": "Igba akwụkwọ na ụka Katolik na-ewe oge na ọtụtụ ihe ndị ọzọ mana ndị isi ụka Katolik sịrị na ọ bụ iji gbadọ ndị na-anụ onwe ha ọfụma maka obibi di na nwunye.",
"timestamp": 1516392853000,
"passport": {
"category": {
"categoryId": "http://www.bbc.co.uk/ontologies/applicationlogic-news/Explainer",
"categoryName": "Explainer"
}
},
"cpsType": "STY",
"indexImage": {
"id": "63651924",
"subType": "index",
"href": "http://b.files.bbci.co.uk/A7A3/test/_63651924_pope-couple.jpg",
"path": "/cpsdevpb/A7A3/test/_63651924_pope-couple.jpg",
"height": 549,
"width": 976,
"altText": "Pope Francis",
"caption": "Popu Francis gbara Paula Podest Ruiz, na Carlos Ciuffardi Elorriga,akwụkwọ n' ime ụgbọ-elu",
"copyrightHolder": "Reuters"
},
"imageThumbnail": {
"id": "63651926",
"subType": "index-thumbnail",
"href": "http://b.files.bbci.co.uk/F5C3/test/_63651926_pope-couple.jpg",
"path": "/cpsdevpb/F5C3/test/_63651926_pope-couple.jpg",
"height": 180,
"width": 320,
"altText": "Pope Francis",
"caption": "Popu Francis gbara Paula Podest Ruiz, na Carlos Ciuffardi Elorriga,akwụkwọ n' ime ụgbọ-elu",
"copyrightHolder": "Reuters"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182570",
"type": "cps"
},
{
"headlines": {
"headline": "E jirila ịdị ime ghọria ụmụ nwaanyị-aga na mba Guinea"
},
"locators": {
"assetUri": "/igbo/23182287",
"cpsUrn": "urn:bbc:content:assetUri:igbo/23182287"
},
"summary": "Aka akparala otu nwaanyị na-enye ụmụ nwaanyị-aga ọgwụ na-eko ha afọ ọ dị ka ha adị ime",
"timestamp": 1516305079000,
"cpsType": "STY",
"indexImage": {
"id": "63651765",
"subType": "index",
"href": "http://b.files.bbci.co.uk/DD8B/test/_63651765__99631438_guineapregnancy.jpg",
"path": "/cpsdevpb/DD8B/test/_63651765__99631438_guineapregnancy.jpg",
"height": 549,
"width": 976,
"altText": "Ṅwaanyi afo koro eko",
"caption": "Nwoke ahú na-enye úmúnwaanyí ógwú na-eko ha afó",
"copyrightHolder": "Alhassan Sillah"
},
"options": {
"isBreakingNews": false,
"isFactCheck": false
},
"section": {
"subType": "IDX",
"name": "Ogbako",
"uri": "/igbo/front_page",
"type": "simple"
},
"id": "urn:bbc:ares::asset:igbo/23182287",
"type": "cps"
}
],
"strapline": {
"name": "Kuziere m"
},
"semanticGroupName": "Section 2"
},
{
"type": "responsive-in-depth",