-
Notifications
You must be signed in to change notification settings - Fork 237
/
Copy pathc2dl5y6dgrzt.json
3847 lines (3847 loc) · 169 KB
/
c2dl5y6dgrzt.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
{
"data": {
"title": "Donald Trump ni we agiye kuba umukuru w'igihugu wa Reta Zunze Ubumwe za Amerika agira 47",
"description": "Umurepubulikani Donald Trump yashoboye kuronka amajwi arengeye ayo yarondera kugira ngo atsinde ano matora, akaba ari agiye kuramutswa igihugu, atsinze Umudemokarate Kamala Harris.",
"language": "rw",
"headerImage": {
"url": "https://ichef.bbci.co.uk/ace/standard/480/cpsprodpb/3cec/live/e7bcb070-9c34-11ef-82c3-45a801b7330b.jpg",
"urlTemplate": "https://ichef.bbci.co.uk/ace/standard/{width}/cpsprodpb/3cec/live/e7bcb070-9c34-11ef-82c3-45a801b7330b.jpg",
"height": 576,
"width": 1024,
"copyright": "BBC"
},
"promoImage": {
"url": "https://ichef.bbci.co.uk/ace/standard/480/cpsprodpb/b6ff/live/58881340-9c34-11ef-82c3-45a801b7330b.png",
"urlTemplate": "https://ichef.bbci.co.uk/ace/standard/{width}/cpsprodpb/b6ff/live/58881340-9c34-11ef-82c3-45a801b7330b.png",
"height": 667,
"width": 1194,
"copyright": "BBC"
},
"home": "gahuza",
"section": null,
"commercialInfo": {
"adCategory": null,
"adSubCategory": null,
"hasAdvertising": true
},
"sportDataEvent": { "id": null },
"eavisEvent": { "id": null },
"article": { "id": null },
"mediaCollections": null,
"keyHighlight": { "id": null },
"electionBanner": { "id": null },
"supportingLinks": { "id": null },
"riddle": { "id": null },
"seo": {
"seoTitle": "Donald Trump ni we agiye kuba umukuru w'igihugu wa Reta Zunze Ubumwe za Amerika agira 47",
"seoDescription": "Umurepubulikani Donald Trump yashoboye kuronka amajwi arengeye ayo yarondera kugira ngo atsinde ano matora, akaba ari agiye kuramutswa igihugu, atsinze Umudemokarate Kamala Harris.",
"datePublished": "2024-11-05T21:45:00.000Z",
"dateModified": "2024-11-06T11:11:00.000Z"
},
"endDateTime": "2024-11-06T15:00:00.000Z",
"startDateTime": "2024-11-05T21:45:00.000Z",
"firstPublishedDateTime": "2024-11-05T21:24:06.768Z",
"type": "live-coverage",
"dataSource": "TIPO",
"isLive": false,
"summaryPoints": {
"id": "urn:bbc:optimo:asset:cdrd5v685yzo",
"content": {
"model": {
"blocks": [
{
"id": "0d2dc930",
"type": "text",
"model": {
"blocks": [
{
"id": "e6cb81b9",
"type": "unorderedList",
"model": {
"blocks": [
{
"id": "62be9f4c",
"type": "listItem",
"model": {
"blocks": [
{
"id": "9bbebd0c",
"type": "paragraph",
"model": {
"text": "Donald Trump yamaze kwizigira intsinzi akaba ahejeje gushikiriza ijambo aho abwira Abanyamerika ko atazobahemukira",
"blocks": [
{
"id": "44e4c1aa",
"type": "fragment",
"model": {
"text": "Donald Trump yamaze kwizigira intsinzi akaba ahejeje gushikiriza ijambo aho abwira Abanyamerika ko atazobahemukira",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "3e287755",
"type": "listItem",
"model": {
"blocks": [
{
"id": "200c8213",
"type": "paragraph",
"model": {
"text": "Abanyamerika bitabiriye amatora y’umukuru w’igihugu cabo ku wa 5 Munyonyo",
"blocks": [
{
"id": "5c5ed1fa",
"type": "fragment",
"model": {
"text": "Abanyamerika ",
"attributes": []
}
},
{
"id": "2cc284b9",
"type": "urlLink",
"model": {
"text": "bitabiriye amatora y’umukuru w’igihugu cabo",
"blocks": [
{
"id": "cfd69e36",
"type": "fragment",
"model": {
"text": "bitabiriye amatora y’umukuru w’igihugu cabo",
"attributes": []
}
}
],
"locator": "https://www.bbc.com/gahuza/articles/cn4vq3jjvzko",
"isExternal": false
}
},
{
"id": "25147a75",
"type": "fragment",
"model": {
"text": " ku wa 5 Munyonyo",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "2e0bcf23",
"type": "listItem",
"model": {
"blocks": [
{
"id": "541e3f23",
"type": "paragraph",
"model": {
"text": "Abarenga imiriyoni 82 ni bo bari bamaze gutora imbere y’uno musi nyezina w’amatora",
"blocks": [
{
"id": "b95af1c1",
"type": "fragment",
"model": {
"text": "Abarenga imiriyoni 82 ni bo bari bamaze gutora imbere y’uno musi nyezina w’amatora",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "7dfc8360",
"type": "listItem",
"model": {
"blocks": [
{
"id": "22771905",
"type": "paragraph",
"model": {
"text": "Kamala Harris w’imyaka 60 na Donald Trump w’imyaka 78 nibo bahiganira iki kibanza",
"blocks": [
{
"id": "3e1c7570",
"type": "urlLink",
"model": {
"text": "Kamala Harris",
"blocks": [
{
"id": "443353da",
"type": "fragment",
"model": {
"text": "Kamala Harris",
"attributes": []
}
}
],
"locator": "https://www.bbc.com/gahuza/articles/c17l78dpky0o",
"isExternal": false
}
},
{
"id": "d80e6bd1",
"type": "fragment",
"model": {
"text": " w’imyaka 60 na ",
"attributes": []
}
},
{
"id": "f6a644e2",
"type": "urlLink",
"model": {
"text": "Donald Trump",
"blocks": [
{
"id": "fba0faf3",
"type": "fragment",
"model": {
"text": "Donald Trump",
"attributes": []
}
}
],
"locator": "https://www.bbc.com/gahuza/articles/cwylyg5yy98o",
"isExternal": false
}
},
{
"id": "3f8ca877",
"type": "fragment",
"model": {
"text": " w’imyaka 78 nibo bahiganira iki kibanza",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "9e8eef61",
"type": "listItem",
"model": {
"blocks": [
{
"id": "a6dd2763",
"type": "paragraph",
"model": {
"text": "Harris yari yiyemeje guharanira uburenganzira bwo gukoroza inda no kugabanya ibiciro vy’imfungurwa no gupanga ku miryango y’abakozi",
"blocks": [
{
"id": "68a8f9be",
"type": "fragment",
"model": {
"text": "Harris yari yiyemeje guharanira uburenganzira bwo gukoroza inda no kugabanya ibiciro vy’imfungurwa no gupanga ku miryango y’abakozi",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "030310ff",
"type": "listItem",
"model": {
"blocks": [
{
"id": "456a2e84",
"type": "paragraph",
"model": {
"text": "Trump yiyemeje kwubaka uruhome rwo kuzibira umupaka, no kugabanya amakori afise agaciro k’imiriyaridi ziharurwa mu bihumbi",
"blocks": [
{
"id": "8dc265b8",
"type": "fragment",
"model": {
"text": "Trump yiyemeje kwubaka uruhome rwo kuzibira umupaka, no kugabanya amakori afise agaciro k’imiriyaridi ziharurwa mu bihumbi",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "537d0883",
"type": "listItem",
"model": {
"blocks": [
{
"id": "470bdb63",
"type": "paragraph",
"model": {
"text": "Hampande y'umukuru w'igihugu, habaye kandi n'amatora y'abashingamateka: Nk’uko bigenda buri myaka ibiri, abanyagihugu baratora kandi abashingamateka 435, ubu Abarepubulikani ni bo biganje mu nama nshingamateka ihari ubu.",
"blocks": [
{
"id": "e3d3f8bc",
"type": "fragment",
"model": {
"text": "Hampande y'umukuru w'igihugu, habaye kandi n'amatora y'abashingamateka: Nk’uko bigenda buri myaka ibiri, abanyagihugu baratora kandi abashingamateka 435, ubu Abarepubulikani ni bo biganje mu nama nshingamateka ihari ubu.",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "b3b8773e",
"type": "listItem",
"model": {
"blocks": [
{
"id": "f8005f1e",
"type": "paragraph",
"model": {
"text": "Ica gatatu c’abakenguzamateka ba Amerika - 34 kw’100 - na co nyene kiriko kirarondera. Abademokarate ubu bagenzura inama nkenguzamateka",
"blocks": [
{
"id": "83c8f153",
"type": "fragment",
"model": {
"text": "Ica gatatu c’abakenguzamateka ba Amerika - 34 kw’100 - na co nyene kiriko kirarondera. Abademokarate ubu bagenzura inama nkenguzamateka",
"attributes": []
}
}
]
}
}
]
}
},
{
"id": "cf04e250",
"type": "listItem",
"model": {
"blocks": [
{
"id": "26e3bed7",
"type": "paragraph",
"model": {
"text": "Umugambwe w'Abarepubulika ubu ni wo ugiye kugenzura inama nkenguzamateka",
"blocks": [
{
"id": "d95bc94e",
"type": "fragment",
"model": {
"text": "Umugambwe w'Abarepubulika ubu ni wo ugiye kugenzura inama nkenguzamateka",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
}
]
}
}
},
"liveTextStream": {
"id": "AB3F1F89DDC045AAA8718FA3B23DFFC3",
"contributors": "Na Bernard Bankukira\n\nBBC Great Lakes",
"content": {
"data": {
"results": [
{
"typeCode": null,
"header": { "model": { "blocks": [] } },
"content": {
"model": {
"blocks": [
{
"id": "22bf506e",
"type": "paragraph",
"model": {
"text": "Ni na hano turangirije ano makuru y'ikibiriraho, murakoze mwese mubandanya mudukurikirana. ",
"blocks": [
{
"id": "476fa521",
"type": "fragment",
"model": {
"text": "Ni na hano turangirije ano makuru y'ikibiriraho, murakoze mwese mubandanya mudukurikirana. ",
"attributes": ["bold", "italic"]
}
}
]
}
}
]
}
},
"link": null,
"urn": "asset:dedd21c7-e692-40b8-a2a4-31d837f5e23a",
"type": "POST",
"options": { "isBreakingNews": false },
"dates": {
"firstPublished": "2024-11-06T10:53:38.000Z",
"lastPublished": "2024-11-06T11:11:00.000Z",
"time": null,
"curated": "2024-11-06T10:53:40.537Z"
},
"titles": [{ "title": null, "source": "primary" }],
"descriptions": [{ "text": null, "source": "summary" }],
"images": [
{
"originalUrl": null,
"altText": null,
"copyright": null,
"urlTemplate": null,
"url": null
}
]
},
{
"typeCode": null,
"header": {
"model": {
"blocks": [
{
"id": "075ad2f3",
"type": "headline",
"model": {
"blocks": [
{
"id": "cbc4c69f",
"type": "text",
"model": {
"blocks": [
{
"id": "f77e6f51",
"type": "paragraph",
"model": {
"text": "Ibizigizigi vya Kamala biraheze, Trump ni we agiye kuramutswa igihugu",
"blocks": [
{
"id": "732ad5d7",
"type": "fragment",
"model": {
"text": "Ibizigizigi vya Kamala biraheze, Trump ni we agiye kuramutswa igihugu",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
"content": {
"model": {
"blocks": [
{
"id": "452171fd",
"type": "paragraph",
"model": { "text": "", "blocks": [] }
},
{
"id": "022ace99",
"type": "image",
"model": {
"blocks": [
{
"id": "9c987351",
"type": "rawImage",
"model": {
"height": 670,
"width": 1189,
"locator": "vivo/live/images/2024/11/6/099d846b-4793-43cf-a5fc-8cb122a9c03b.png",
"originCode": "cpsprodpb",
"copyrightHolder": "BBC"
}
},
{
"id": "841b964b",
"type": "altText",
"model": {
"blocks": [
{
"id": "455d5c85",
"type": "text",
"model": {
"blocks": [
{
"id": "32fe44a5",
"type": "paragraph",
"model": {
"text": "Trump aratsinze",
"blocks": [
{
"id": "bf2b69e4",
"type": "fragment",
"model": {
"text": "Trump aratsinze",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
{
"id": "d7fa9662",
"type": "paragraph",
"model": {
"text": "Inyuma y’uko ibiharuro\nvyo mu ntara ya Wisconsin, iyindi ntara mahindagu, ifise intebe 10 hamwe na Alaska ifise intebe 3, bihereye intebe 13 Donald\nTrump, aciye arenza amajwi 270 yarondera kugira ngo atsinde, ubu akaba agize\n279.",
"blocks": [
{
"id": "6df9ab13",
"type": "fragment",
"model": {
"text": "Inyuma y’uko ibiharuro\nvyo mu ntara ya Wisconsin, iyindi ntara mahindagu, ifise intebe 10 hamwe na Alaska ifise intebe 3, bihereye intebe 13 Donald\nTrump, aciye arenza amajwi 270 yarondera kugira ngo atsinde, ubu akaba agize\n279.",
"attributes": []
}
}
]
}
},
{
"id": "8f65328b",
"type": "paragraph",
"model": {
"text": "Aya majwi amuhaye\nitsinzi itaziguye muri ano matora y’umukuru w’igihugu yabaye ejo ku wa 5 Munyonyo\n2024, akaba agiye kuba umukuru wa Reta Zunze Ubumwe za Amerika agira 47. ",
"blocks": [
{
"id": "ce3d5bd6",
"type": "fragment",
"model": {
"text": "Aya majwi amuhaye\nitsinzi itaziguye muri ano matora y’umukuru w’igihugu yabaye ejo ku wa 5 Munyonyo\n2024, akaba agiye kuba umukuru wa Reta Zunze Ubumwe za Amerika agira 47. ",
"attributes": []
}
}
]
}
},
{
"id": "281d1a90",
"type": "paragraph",
"model": {
"text": "Donald\nTrump asubiye kubikora, inyuma y’imyaka umunani yirahiye Hillary Clinton mu\nbintu abatari bake batari biteze, yongeye gutsinda uwundi mugore yahiganwa\nnawe. ",
"blocks": [
{
"id": "92de09f2",
"type": "fragment",
"model": {
"text": "Donald\nTrump asubiye kubikora, inyuma y’imyaka umunani yirahiye Hillary Clinton mu\nbintu abatari bake batari biteze, yongeye gutsinda uwundi mugore yahiganwa\nnawe. ",
"attributes": []
}
}
]
}
},
{
"id": "9c928bc2",
"type": "image",
"model": {
"blocks": [
{
"id": "80803806",
"type": "rawImage",
"model": {
"height": 800,
"width": 640,
"locator": "vivo/live/images/2024/11/6/ac6e340a-6d80-45a0-9a75-c8171096d1d5.jpg",
"originCode": "cpsprodpb",
"copyrightHolder": "b"
}
},
{
"id": "4f0907c0",
"type": "altText",
"model": {
"blocks": [
{
"id": "5879f1d0",
"type": "text",
"model": {
"blocks": [
{
"id": "6d7aca0c",
"type": "paragraph",
"model": {
"text": "Ivyavuye mu matora",
"blocks": [
{
"id": "4e3e2e38",
"type": "fragment",
"model": {
"text": "Ivyavuye mu matora",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
}
]
}
},
"link": null,
"urn": "asset:31f0652c-5fb9-4aae-a965-0e763dd7968a",
"type": "POST",
"options": { "isBreakingNews": false },
"dates": {
"firstPublished": "2024-11-06T10:47:45.000Z",
"lastPublished": "2024-11-06T11:50:09.000Z",
"time": null,
"curated": "2024-11-06T10:47:47.832Z"
},
"titles": [{ "title": null, "source": "primary" }],
"descriptions": [{ "text": null, "source": "summary" }],
"images": [
{
"originalUrl": null,
"altText": null,
"copyright": null,
"urlTemplate": null,
"url": null
}
]
},
{
"typeCode": null,
"header": {
"model": {
"blocks": [
{
"id": "bcf39f6e",
"type": "headline",
"model": {
"blocks": [
{
"id": "43bf23a3",
"type": "text",
"model": {
"blocks": [
{
"id": "96432cc5",
"type": "paragraph",
"model": {
"text": "Donald Trump: Menya uno mutunzi ruhebwa yamaze gutangaza ko yatsindiye ikiringo kigira kabiri co kurongora Amerika",
"blocks": [
{
"id": "a56bfe70",
"type": "fragment",
"model": {
"text": "Donald Trump: Menya uno mutunzi ruhebwa yamaze gutangaza ko yatsindiye ikiringo kigira kabiri co kurongora Amerika",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
"content": {
"model": {
"blocks": [
{
"id": "038a8ecf",
"type": "paragraph",
"model": { "text": "", "blocks": [] }
},
{
"id": "f272b0ea",
"type": "image",
"model": {
"blocks": [
{
"id": "2f537f29",
"type": "rawImage",
"model": {
"height": 538,
"width": 964,
"locator": "vivo/live/images/2024/11/6/4c75f3c1-f96b-4a64-8c53-961ee0f4141a.png",
"originCode": "cpsprodpb",
"copyrightHolder": "Getty Images"
}
},
{
"id": "6787e5ca",
"type": "altText",
"model": {
"blocks": [
{
"id": "4d4c3142",
"type": "text",
"model": {
"blocks": [
{
"id": "c5d804d6",
"type": "paragraph",
"model": {
"text": "Trump",
"blocks": [
{
"id": "9ed235eb",
"type": "fragment",
"model": {
"text": "Trump",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
{
"id": "43b65645",
"type": "paragraph",
"model": {
"text": "Kuva na kera imbere y'uko agerageza kurondera kwiyamamariza kuba umukuru w'igihugu ca Reta Zunze Ubumwe za Amerika incuro zitatu zose, Donald Trump yari we mutunzi wa mbere yavugwa cane muri Amerika.",
"blocks": [
{
"id": "45e20462",
"type": "fragment",
"model": {
"text": "Kuva na kera imbere y'uko agerageza kurondera kwiyamamariza kuba umukuru w'igihugu ca Reta Zunze Ubumwe za Amerika incuro zitatu zose, Donald Trump yari we mutunzi wa mbere yavugwa cane muri Amerika.",
"attributes": []
}
}
]
}
},
{
"id": "191a3616",
"type": "paragraph",
"model": {
"text": "Ubuzima bw'uno mutunzi ruhebwa w'i New York yari yashize imitahe yiwe mu nyubakwa bwaramamaye cane mu binyamakuru no ku mboneshakure mu myaka mirongo imbere y'uko, mu buryo butari bwitezwe mu 2015-16, agenwa kwitoreza ikibanza c'umukuru w'igihugu kw'izina ry'Abarepubulikani.",
"blocks": [
{
"id": "08d53463",
"type": "fragment",
"model": {
"text": "Ubuzima bw'uno mutunzi ruhebwa w'i New York yari yashize imitahe yiwe mu nyubakwa bwaramamaye cane mu binyamakuru no ku mboneshakure mu myaka mirongo imbere y'uko, mu buryo butari bwitezwe mu 2015-16, agenwa kwitoreza ikibanza c'umukuru w'igihugu kw'izina ry'Abarepubulikani.",
"attributes": []
}
}
]
}
},
{
"id": "6cedde58",
"type": "paragraph",
"model": {
"text": "Izina ryiwe ryari rizwi cane n'ukwirekura mu mvugo kwiwe mu myiyamamazo vyaramufashije kwiganzura abanyaporitike bari rurangiranwa - ariko impari zaranze ubutegetsi bwiwe zatumye atongerwa ikiringo kigira kabiri. Fyonda ng'aha ubandanye usoma ino nkuru",
"blocks": [
{
"id": "fd50d2a6",
"type": "fragment",
"model": {
"text": "Izina ryiwe ryari rizwi cane n'ukwirekura mu mvugo kwiwe mu myiyamamazo vyaramufashije kwiganzura abanyaporitike bari rurangiranwa - ariko impari zaranze ubutegetsi bwiwe zatumye atongerwa ikiringo kigira kabiri. ",
"attributes": []
}
},
{
"id": "773cdf4a",
"type": "urlLink",
"model": {
"text": "Fyonda ng'aha ubandanye usoma ino nkuru",
"locator": "https://www.bbc.com/gahuza/articles/cwylyg5yy98o",
"blocks": [
{
"id": "a788087b",
"type": "fragment",
"model": {
"text": "Fyonda ng'aha ubandanye usoma ino nkuru",
"attributes": []
}
}
]
}
}
]
}
}
]
}
},
"link": null,
"urn": "asset:2c61a8cd-5f77-45be-9dce-121055fadd4d",
"type": "POST",
"options": { "isBreakingNews": false },
"dates": {
"firstPublished": "2024-11-06T09:29:29.000Z",
"lastPublished": "2024-11-06T09:29:29.000Z",
"time": null,
"curated": "2024-11-06T09:29:30.774Z"
},
"titles": [{ "title": null, "source": "primary" }],
"descriptions": [{ "text": null, "source": "summary" }],
"images": [
{
"originalUrl": null,
"altText": null,
"copyright": null,
"urlTemplate": null,
"url": null
}
]
},
{
"typeCode": null,
"header": {
"model": {
"blocks": [
{
"id": "c164da7a",
"type": "headline",
"model": {
"blocks": [
{
"id": "79ea630c",
"type": "text",
"model": {
"blocks": [
{
"id": "f98c1223",
"type": "paragraph",
"model": {
"text": "Umugore wa mbere yabaye icegera ca prezida muri Amerika afise vyinshi bimuranga",
"blocks": [
{
"id": "8072b3c6",
"type": "fragment",
"model": {
"text": "Umugore wa mbere yabaye icegera ca prezida muri Amerika afise vyinshi bimuranga",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
"content": {
"model": {
"blocks": [
{
"id": "35a3fa46",
"type": "paragraph",
"model": { "text": "", "blocks": [] }
},
{
"id": "cfce05b2",
"type": "image",
"model": {
"blocks": [
{
"id": "33a4f9a9",
"type": "rawImage",
"model": {
"height": 550,
"width": 964,
"locator": "vivo/live/images/2024/11/6/d0ce8fea-538a-4b38-b65b-6785e2c1e592.png",
"originCode": "cpsprodpb",
"copyrightHolder": "Getty Images"
}
},
{
"id": "c9cc4a12",
"type": "altText",
"model": {
"blocks": [
{
"id": "2ed339f7",
"type": "text",
"model": {
"blocks": [
{
"id": "0171b5ec",
"type": "paragraph",
"model": {
"text": "Harris",
"blocks": [
{
"id": "f77cbe28",
"type": "fragment",
"model": {
"text": "Harris",
"attributes": []
}
}
]
}
}
]
}
}
]
}
}
]
}
},
{
"id": "5c1fa4a5",
"type": "paragraph",
"model": {
"text": "Vyafashe umwanya udashika n'isaha inyuma y'ingingo ya Biden yo gukura meza kugira aba Demokrate batangure kwiyamamariza Kamala Harris nk'umukandida mushasha w'umugambwe wabo mu matora yo mu 2024.",
"blocks": [
{
"id": "429b9d5d",
"type": "fragment",
"model": {
"text": "Vyafashe umwanya udashika n'isaha inyuma y'ingingo ya Biden yo gukura meza kugira aba Demokrate batangure kwiyamamariza Kamala Harris nk'umukandida mushasha w'umugambwe wabo mu matora yo mu 2024.",
"attributes": []
}
}
]
}
},
{
"id": "fecdd2d9",
"type": "paragraph",
"model": {
"text": "Mu gihe icegera ca prezida wa Reta zunze Ubumwe za Amerika ashaka kuba umugore wa mbere agiye mu kibanza ca prezida, imyiyamamazo yiwe yahaye inguvu abari bacitse intege, ica n'umuhigo w'intererano yegeranijwe igera ku madorari imiriyoni 671 mu mezi abiri aheze - hafi incuro zitatu z'ayo uwo bahanganye w'umu Republikani, Donald Trump yaronse.",
"blocks": [
{
"id": "8a8a8017",
"type": "fragment",
"model": {
"text": "Mu gihe icegera ca prezida wa Reta zunze Ubumwe za Amerika ashaka kuba umugore wa mbere agiye mu kibanza ca prezida, imyiyamamazo yiwe yahaye inguvu abari bacitse intege, ica n'umuhigo w'intererano yegeranijwe igera ku madorari imiriyoni 671 mu mezi abiri aheze - hafi incuro zitatu z'ayo uwo bahanganye w'umu Republikani, Donald Trump yaronse.",
"attributes": []
}
}
]
}
},
{
"id": "32bd79cc",
"type": "paragraph",
"model": {
"text": "Ariko gushika mu kibanza ca mbere ku rutonde vyabaye ntagereranywa, imitego myinshi hamwe n'ibibazo vy'urusobe. Ng'aya amabanga Harris yagiye ararangura, ivyaranze ubuzima bwiwe n'ingene yabaye umugore wa mbere w'umwirabure yitoje mu kibanza c'umukuru w'igihugu. Fyonda hano usome inkuru iramvuye",
"blocks": [
{
"id": "e193c161",
"type": "fragment",
"model": {
"text": "Ariko gushika mu kibanza ca mbere ku rutonde vyabaye ntagereranywa, imitego myinshi hamwe n'ibibazo vy'urusobe. Ng'aya amabanga Harris yagiye ararangura, ivyaranze ubuzima bwiwe n'ingene yabaye umugore wa mbere w'umwirabure yitoje mu kibanza c'umukuru w'igihugu. ",
"attributes": []
}
},
{
"id": "e58a4ffc",
"type": "urlLink",
"model": {