-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiso3166-updates.json
6046 lines (6046 loc) · 360 KB
/
iso3166-updates.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
{
"AD": [
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AD)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AD)."
},
{
"Code/Subdivision Change": "Subdivisions added: 7 parishes.",
"Description of Change": "Addition of the administrative subdivisions and of their code elements.",
"Date Issued": "2007-04-17",
"Edition/Newsletter": "Newsletter I-8 (https://web.archive.org/web/20120330105926/http://www.iso.org/iso/iso_3166-2_newsletter_i-8_en.pdf)."
}
],
"AE": [
{
"Code/Subdivision Change": "Change of spelling of AE-AJ, AE-RK; addition of local variation of AE-FK, AE-RK, AE-UQ; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AE)."
},
{
"Code/Subdivision Change": "Error correction: Spelling correction in AE-AZ.",
"Description of Change": "",
"Date Issued": "2002-08-20",
"Edition/Newsletter": "Newsletter I-3 (https://web.archive.org/web/20081218103236/http://www.iso.org/iso/iso_3166-2_newsletter_i-3_en.pdf)."
},
{
"Code/Subdivision Change": "Spelling correction in AE-RK.",
"Description of Change": "",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"AF": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AF)."
},
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AF)."
},
{
"Code/Subdivision Change": "Correction of the local short name; change romanization system; change of spelling of categories of pus and fas; change of spelling of AF-KNR; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AF)."
},
{
"Code/Subdivision Change": "Codes: AF-LOW Lowgar -> AF-LOG Lōgar AF-ORU Orūzgān -> AF-URU Uruzgān.",
"Description of Change": "Language corrections, administrative name corrections, alphabetical re-ordering and source list update.",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: AF-DAY Dāykondī AF-PAN Panjshīr.",
"Description of Change": "Addition of 2 provinces. Update of list source.",
"Date Issued": "2005-09-13",
"Edition/Newsletter": "Newsletter I-7 (https://web.archive.org/web/20081218103217/http://www.iso.org/iso/iso_3166-2_newsletter_i-7_en.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: AF-KHO Khowst AF-NUR Nūrestān.",
"Description of Change": "Addition of 2 provinces. Update of list source.",
"Date Issued": "2004-03-08",
"Edition/Newsletter": "Newsletter I-6 (https://web.archive.org/web/20081218103224/http://www.iso.org/iso/iso_3166-2_newsletter_i-6_en.pdf)."
}
],
"AG": [
{
"Code/Subdivision Change": "Change spelling of AG-04.",
"Description of Change": "",
"Date Issued": "2014-10-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AG)."
},
{
"Code/Subdivision Change": "Subdivisions added: AG-11 Redonda.",
"Description of Change": "Update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: 6 parishes, 1 dependency.",
"Description of Change": "Addition of the administrative subdivisions and of their code elements.",
"Date Issued": "2007-04-17",
"Edition/Newsletter": "Newsletter I-8 (https://web.archive.org/web/20081218103230/http://www.iso.org/iso/iso_3166-2_newsletter_i-8_en.pdf)."
}
],
"AI": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AI)."
}
],
"AL": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AL)."
},
{
"Code/Subdivision Change": "Change of subdivision category from préfecture to comté in French; deletion of all districts; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AL)."
},
{
"Code/Subdivision Change": "Separation of the variant local short names by semi-colon.",
"Description of Change": "",
"Date Issued": "2014-04-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AL)."
},
{
"Code/Subdivision Change": "Addition of the country code prefix as the first code element.",
"Description of Change": "",
"Date Issued": "2010-02-19",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AL)."
},
{
"Code/Subdivision Change": "Codes: format changed (leading digit 0 added).",
"Description of Change": "Addition of the country code prefix as the first code element.",
"Date Issued": "2010-02-03 (corrected 2010-02-19)",
"Edition/Newsletter": "Newsletter II-1 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-1_corrected_2010-02-19.pdf)."
},
{
"Code/Subdivision Change": "Change of generic term for administrative divisions. New list source.",
"Description of Change": "",
"Date Issued": "2004-03-08",
"Edition/Newsletter": "Newsletter I-6 (https://web.archive.org/web/20081218103224/http://www.iso.org/iso/iso_3166-2_newsletter_i-6_en.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: 12 prefectures (now called counties) Codes: AL-LA Laç -> AL-KB Kurbin.",
"Description of Change": "Introduction of 12 prefectures with their code elements. One district name and its code element changed. One district name corrected. Attribution of the prefecture code element to each district.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"AM": [
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AM)."
}
],
"AO": [
{
"Code/Subdivision Change": "Change of spelling of AO-CCU, AO-CNO, AO-CUS, AO-LNO, AO-LSU; Addition of local variation for AO-CCU, AO-CNO, AO-CUS; Update List Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AO)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AO)."
},
{
"Code/Subdivision Change": "Correct spelling of AO-CCU.",
"Description of Change": "",
"Date Issued": "2015-02-12",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AO)."
},
{
"Code/Subdivision Change": "Correct spelling of AO-CNO and AO-CUS.",
"Description of Change": "",
"Date Issued": "2014-12-18",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AO)."
},
{
"Code/Subdivision Change": "Change spelling of AO-CNO, AO-CUS, and AO-CCU; update List Source.",
"Description of Change": "",
"Date Issued": "2014-10-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AO)."
},
{
"Code/Subdivision Change": "Spelling correction in AO-ZAI.",
"Description of Change": "",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"AQ": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AQ)."
}
],
"AR": [
{
"Code/Subdivision Change": "Typographical correction of a name and update of the list and code sources.",
"Description of Change": "",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
}
],
"AS": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard. Included also as a subdivision of the United States (US-AS)).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AS)."
}
],
"AT": [
{
"Code/Subdivision Change": "Change of subdivision category from federal Länder to state; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AT)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AT)."
}
],
"AU": [
{
"Code/Subdivision Change": "Update List Source; update Code Source.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AU)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AU)."
},
{
"Code/Subdivision Change": "Codes: New South Wales: AU-NS -> AU-NSW Queensland: AU-QL -> AU-QLD Tasmania: AU-TS -> AU-TAS Victoria: AU-VI -> AU-VIC Australian Capital Territory: AU-CT -> AU-ACT.",
"Description of Change": "Change of subdivision code in accordance with Australian Standard AS 4212-1994.",
"Date Issued": "2004-03-08",
"Edition/Newsletter": "Newsletter I-6 (https://web.archive.org/web/20081218103224/http://www.iso.org/iso/iso_3166-2_newsletter_i-6_en.pdf)."
}
],
"AW": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard. Included also as subdivision of Netherlands (NL-AW)).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AW)."
},
{
"Code/Subdivision Change": "Addition of the alpha 3 administrative language code pap.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AW)."
},
{
"Code/Subdivision Change": "Addition of code to align ISO 3166-1 and ISO 3166-2.",
"Description of Change": "",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
}
],
"AX": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AX)."
},
{
"Code/Subdivision Change": "Correct administrative languages.",
"Description of Change": "",
"Date Issued": "2011-07-14",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AX)."
},
{
"Code/Subdivision Change": "Correct administrative languages.",
"Description of Change": "",
"Date Issued": "2011-06-12",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AX)."
}
],
"AZ": [
{
"Code/Subdivision Change": "Deletion of the romanization system; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:AZ)."
},
{
"Code/Subdivision Change": "Subdivisions added: AZ-KAN Kǝngǝrli AZ-NV Naxçıvan (municipality) Subdivisions deleted: AZ-SS Şuşa Codes: AZ-AB Əli Bayramlı -> AZ-SR Şirvan AZ-DAV Dəvəçi -> AZ-SBN Şabran AZ-XAN Xanlar -> AZ-GYG Göygöl.",
"Description of Change": "Alphabetical re-ordering, name change of administrative places, first level prefix addition and source list update.",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Codes: Naxçıvan: AZ-MM -> AZ-NX.",
"Description of Change": "Correction of one code and four spelling errors. Notification of the rayons belonging to the autonomous republic.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"BA": [
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BA)."
},
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-22",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BA)."
},
{
"Code/Subdivision Change": "Deletion of all cantons BA-01 to BA-10.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BA)."
},
{
"Code/Subdivision Change": "Correct typographic error for the language code for Croatian.",
"Description of Change": "",
"Date Issued": "2010-12-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BA)."
},
{
"Code/Subdivision Change": "Subdivisions added: BA-BRC Brčko distrikt.",
"Description of Change": "Addition of the country code prefix as the first code element, addition of names in administrative languages, update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: 10 cantons.",
"Description of Change": "Second edition of ISO 3166-2 (this change was not announced in a newsletter)[1] (#cite_note-2).",
"Date Issued": "2007-12-13",
"Edition/Newsletter": "ISO 3166-2:2007 (http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=39718)."
}
],
"BB": [
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BB)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BB)."
},
{
"Code/Subdivision Change": "Subdivisions added: 11 parishes.",
"Description of Change": "Addition of the administrative subdivisions and of their code elements.",
"Date Issued": "2007-04-17",
"Edition/Newsletter": "Newsletter I-8 (https://web.archive.org/web/20081218103230/http://www.iso.org/iso/iso_3166-2_newsletter_i-8_en.pdf)."
}
],
"BD": [
{
"Code/Subdivision Change": "Change of spelling of BD-03, BD-06, BD-08, BD-10, BD-22, BD-A, BD-B; Addition of local variation for BD-10, BD-B; Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BD)."
},
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BD)."
},
{
"Code/Subdivision Change": "Change of spelling of BD-24, BD-25, BD-29, BD-45; change of parent subdivision of BD-21, BD-34, BD-41, BD-55, BD-57; addition of parent subdivision BD-H; addition of an asterisk to divisions; update list source.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BD)."
},
{
"Code/Subdivision Change": "Correct local short name and align with ISO 3166-2.",
"Description of Change": "",
"Date Issued": "2012-02-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BD)."
},
{
"Code/Subdivision Change": "Subdivisions added: BD-F Rangpur (division) Codes: Barisal (division) : BD-1 -> BD-A Chittagong (division) : BD-2 -> BD-B Dhaka (division) : BD-3 -> BD-C Khulna (division) : BD-4 -> BD-D Rajshahi (division) : BD-5 -> BD-E Sylhet (division) : BD-6 -> BD-G.",
"Description of Change": "Country name romanization adjustment, first level prefix addition, deletion of generic terms, addition of administrative division and source list update.",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: BD-6 Sylhet bibhag Subdivisions deleted: 21 regions (see below).",
"Description of Change": "New list source. One division added. 31 regions cancelled. Allocation of districts to divisions instead of regions. Correction of one spelling error.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"BE": [
{
"Code/Subdivision Change": "Addition of the parent subdivisions.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BE)."
},
{
"Code/Subdivision Change": "First level prefix addition, change of administrative languages and list source update.",
"Description of Change": "",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
}
],
"BF": [
{
"Code/Subdivision Change": "Spelling change: BF-TUI Tui -> Tuy.",
"Description of Change": "Change of spelling of BF-TUI; update list source.",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BF)."
},
{
"Code/Subdivision Change": "Correction of the short name lowercase in French.",
"Description of Change": "",
"Date Issued": "2014-04-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BF)."
},
{
"Code/Subdivision Change": "Subdivisions added: 13 regions.",
"Description of Change": "Update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
}
],
"BG": [
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Change of subdivision category from region to district in eng and fra; update List Source.",
"Description of Change": "",
"Date Issued": "2018-04-20",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Addition of romanization system.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Alignment with ISO 3166-2 of the local short name Alignment with ISO 3166-2 of the local short name.",
"Description of Change": "",
"Date Issued": "2013-02-06",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Local country name romanization system adjustment and source list update.",
"Description of Change": "",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Add the second romanized local name for Bulgaria.",
"Description of Change": "",
"Date Issued": "2011-07-14",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Add the second romanized local name for Bulgaria.",
"Description of Change": "",
"Date Issued": "2011-06-12",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BG)."
},
{
"Code/Subdivision Change": "Application of the romanization system 26 October 2006.",
"Description of Change": "",
"Date Issued": "2007-11-28",
"Edition/Newsletter": "Newsletter I-9 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/newsletter_i-9.pdf)."
},
{
"Code/Subdivision Change": "Subdivision layout: 9 regions (see below) -> 28 regions.",
"Description of Change": "New subdivision layout: Nine regions with former names (two remaining with former code). Ten regions with new names. New references for list source, code source and romanization system.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20081218103157/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"BH": [
{
"Code/Subdivision Change": "Change of subdivision name for BH-13; deletion of a governorate BH-16; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BH)."
},
{
"Code/Subdivision Change": "Subdivision layout: 12 regions (see below) -> 5 governorates.",
"Description of Change": "Modification of the administrative structure.",
"Date Issued": "2007-04-17",
"Edition/Newsletter": "Newsletter I-8 (https://web.archive.org/web/20081218103230/http://www.iso.org/iso/iso_3166-2_newsletter_i-8_en.pdf)."
}
],
"BI": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BI)."
},
{
"Code/Subdivision Change": "Subdivision added: BI-RM Rumonge.",
"Description of Change": "Addition of one province BI-RM; update List Source.",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BI)."
},
{
"Code/Subdivision Change": "Subdivisions added: BI-BM Bujumbura Mairie BI-BL Bujumbura Rural Subdivisions deleted: BI-BJ Bujumbura.",
"Description of Change": "Update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: BI-MW Mwaro.",
"Description of Change": "Addition of one province.",
"Date Issued": "2002-12-10",
"Edition/Newsletter": "Newsletter I-4 (https://web.archive.org/web/20081218103210/http://www.iso.org/iso/iso_3166-2_newsletter_i-4_en.pdf)."
}
],
"BJ": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BJ)."
},
{
"Code/Subdivision Change": "Change of spelling of BJ-AK, BJ-KO; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BJ)."
},
{
"Code/Subdivision Change": "Subdivisions added: BJ-AL Alibori BJ-CO Collines BJ-DO Donga BJ-KO Kouffo BJ-LI Littoral BJ-PL Plateau.",
"Description of Change": "New subdivision layout: 12 departments. Six with previous names and six with new names.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20120131102127/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"BL": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard. Included also as subdivision of France (FR-BL)).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BL)."
},
{
"Code/Subdivision Change": "Correction of the OBP entry error as follows: deletion of “Saint-Barthélemy” in the French name field for Territory.",
"Description of Change": "",
"Date Issued": "2015-02-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BL)."
},
{
"Code/Subdivision Change": "Correction to Newsletter VI-1.",
"Description of Change": "",
"Date Issued": "2008-04-08",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BL)."
},
{
"Code/Subdivision Change": "Addition of new entry (in accordance with ISO 3166-1 Newsletter VI-1).",
"Description of Change": "",
"Date Issued": "2007-11-28",
"Edition/Newsletter": "Newsletter I-9 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/newsletter_i-9.pdf)."
},
{
"Code/Subdivision Change": "Add new entry.",
"Description of Change": "",
"Date Issued": "2007-09-21",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BL)."
}
],
"BM": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BM)."
}
],
"BN": [
{
"Code/Subdivision Change": "Spelling change: BN-BM Brunei-Muara -> Brunei dan Muara (ms).",
"Description of Change": "Change of subdivision name of BN-BM; Update List Source.",
"Date Issued": "2019-11-22",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BN)."
},
{
"Code/Subdivision Change": "Addition of subdivision category name in Malay; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BN)."
},
{
"Code/Subdivision Change": "Alignment of the French short name lower case with UNTERM; update of the remarks in French.",
"Description of Change": "",
"Date Issued": "2014-12-18",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BN)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BN)."
}
],
"BO": [
{
"Code/Subdivision Change": "Change of short name upper case: replace the parentheses with a coma.",
"Description of Change": "",
"Date Issued": "2024-02-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BO)."
},
{
"Code/Subdivision Change": "Alignment of the English and French short names upper and lower case with UNTERM.",
"Description of Change": "",
"Date Issued": "2014-12-18",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BO)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BO)."
},
{
"Code/Subdivision Change": "Change of short form country name in accordance with ISO 3166-1, NL VI-6 (2009-05-08).",
"Description of Change": "",
"Date Issued": "2010-02-19",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BO)."
},
{
"Code/Subdivision Change": "Change of short form country name in accordance with ISO 3166-1, NL VI-6 (2009-05-08).",
"Description of Change": "",
"Date Issued": "2010-02-03 (corrected 2010-02-19)",
"Edition/Newsletter": "Newsletter II-1 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-1_corrected_2010-02-19.pdf)."
},
{
"Code/Subdivision Change": "Change of short and full names.",
"Description of Change": "",
"Date Issued": "2009-05-08",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BO)."
}
],
"BQ": [
{
"Code/Subdivision Change": "Typographical correction of subdivision name of BQ-BO in pap (deleted leading space).",
"Description of Change": "",
"Date Issued": "2019-11-22",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
},
{
"Code/Subdivision Change": "Change in lower case the local short name.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
},
{
"Code/Subdivision Change": "Correct local short name and align with ISO 3166-2.",
"Description of Change": "",
"Date Issued": "2012-02-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
},
{
"Code/Subdivision Change": "Addition of code to align ISO 3166-1 and ISO 3166-2, addition of two divisions and update of the number of divisions.",
"Description of Change": "",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Correct the English name to Sint Eustatius in alignment with United Nations Terminology and Reference Section (UNTERM).",
"Description of Change": "",
"Date Issued": "2011-07-14",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
},
{
"Code/Subdivision Change": "Correct the English name to Sint Eustatius in alignment with United Nations Terminology and Reference Section (UNTERM).",
"Description of Change": "",
"Date Issued": "2011-06-12",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
},
{
"Code/Subdivision Change": "Add new entry.",
"Description of Change": "",
"Date Issued": "2010-12-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BQ)."
}
],
"BR": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BR)."
},
{
"Code/Subdivision Change": "Deletion of asterisk from state BR-TO; update list source.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BR)."
}
],
"BS": [
{
"Code/Subdivision Change": "Subdivision added: BS-NP New Providence.",
"Description of Change": "Addition of island BS-NP; Addition of Remark; Update List Source.",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BS)."
},
{
"Code/Subdivision Change": "Subdivisions deleted: BS-GT Green Turtle Cay.",
"Description of Change": "Correction of NL II-2 for toponyms and typographical errors, one deletion and source list update.",
"Date Issued": "2011-12-13 (corrected 2011-12-15)",
"Edition/Newsletter": "Newsletter II-3 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-3_2011-12-13.pdf)."
},
{
"Code/Subdivision Change": "Subdivision layout: 21 districts (see below) -> 32 districts (mistakenly listed as 31 districts in newsletter).",
"Description of Change": "Update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
}
],
"BT": [
{
"Code/Subdivision Change": "Change of spelling of BT-43; Update List Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BT)."
},
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BT)."
},
{
"Code/Subdivision Change": "Change of spelling of BT-13, BT-45; update list source.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BT)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BT)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BT)."
}
],
"BV": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BV)."
},
{
"Code/Subdivision Change": "Correct administrative language code from nbo to nob.",
"Description of Change": "",
"Date Issued": "2014-04-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BV)."
},
{
"Code/Subdivision Change": "Add local short names.",
"Description of Change": "",
"Date Issued": "2013-02-06",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BV)."
}
],
"BW": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BW)."
},
{
"Code/Subdivision Change": "Subdivisions added: BW-CH Chobe BW-FR Francistown BW-GA \tGaborone BW-JW Jwaneng BW-LO Lobatse BW-SP Selibe Phikwe BW-ST Sowa Town Spelling changes: BW-NE North-East -> North East BW-NW North-West -> North West BW-SE South-East -> South East.",
"Description of Change": "Add 1 district BW-CH, 2 cities BW-FR and BW-GA, 4 towns BW-JW, BW-LO, BW-SP, BW-ST; remove hyphens from BW-NE, BW-NW, and BW-SE; update List Source.",
"Date Issued": "2014-10-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BW)."
},
{
"Code/Subdivision Change": "Subdivisions deleted: BW-CH Chobe Codes: BW-NG Ngamiland -> BW-NW North-West.",
"Description of Change": "Deletion of Chobe district which is incorporated into (new) BW-NW. Change of code element of North-West District to BW-NW. Deletion of alternative names. Update of list source.",
"Date Issued": "2003-09-05",
"Edition/Newsletter": "Newsletter I-5 (https://web.archive.org/web/20081218103244/http://www.iso.org/iso/iso_3166-2_newsletter_i-5_en.pdf)."
}
],
"BY": [
{
"Code/Subdivision Change": "Correction of spelling for BY-HR of BGN/PCGN 1979.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BY)."
},
{
"Code/Subdivision Change": "Correction of the romanization system label.",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BY)."
},
{
"Code/Subdivision Change": "Change romanization system from \"GOST 1983\" to \"Belarusian Lacinka\" of bel; change romanization system of BY-HM* of bel and rus.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BY)."
},
{
"Code/Subdivision Change": "Subdivisions added: BY-HM Horad Minsk.",
"Description of Change": "Update of the administrative structure and of the list source.",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
},
{
"Code/Subdivision Change": "Correction of spelling mistakes and language code elements.",
"Description of Change": "",
"Date Issued": "2000-06-21",
"Edition/Newsletter": "Newsletter I-1 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_i-1_en.pdf)."
}
],
"BZ": [
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BZ)."
},
{
"Code/Subdivision Change": "Update List Source.",
"Description of Change": "",
"Date Issued": "2014-11-03",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:BZ)."
}
],
"CA": [
{
"Code/Subdivision Change": "Name change: CA-YT Yukon Territory -> Yukon.",
"Description of Change": "Change spelling of CA-YT; update List Source.",
"Date Issued": "2014-10-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CA)."
},
{
"Code/Subdivision Change": "Codes: CA-NF Newfoundland -> CA-NL Newfoundland and Labrador.",
"Description of Change": "Change of code element of Newfoundland and Labrador.",
"Date Issued": "2002-12-10",
"Edition/Newsletter": "Newsletter I-4 (https://web.archive.org/web/20081218103210/http://www.iso.org/iso/iso_3166-2_newsletter_i-4_en.pdf)."
},
{
"Code/Subdivision Change": "Codes: CA-NF Newfoundland -> CA-NL Newfoundland and Labrador.",
"Description of Change": "Correction of name form of CA-NF.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20120131102127/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
},
{
"Code/Subdivision Change": "Subdivisions added: CA-NU Nunavut.",
"Description of Change": "Addition of 1 new territory.",
"Date Issued": "2000-06-21",
"Edition/Newsletter": "Newsletter I-1 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_i-1_en.pdf)."
}
],
"CC": [
{
"Code/Subdivision Change": "Modification of remark part 2 (no subdivisions relevant for this standard).",
"Description of Change": "",
"Date Issued": "2018-11-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CC)."
}
],
"CD": [
{
"Code/Subdivision Change": "Correction of the Code Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CD)."
},
{
"Code/Subdivision Change": "Names changed: CD-BC, CD-KE Subdivisions deleted: CD-BN, CD-KA, CD-KW, CD-OR Subdivisions added: CD-BU, CD-HK, CD-HL, CD-HU, CD-IT, CD-KC, CD-KG, CD-KL, CD-KS, CD-LO, CD-LU, CD-MN, CD-MO, CD-NU, CD-SA, CD-SU, CD-TA, CD-TO, CD-TU.",
"Description of Change": "Change of subdivision name of CD-BC, CD-KE; deletion of provinces CD-BN, CD-KA, CD-KW, CD-OR; addition of provinces CD-BU, CD-HK, CD-HL, CD-HU, CD-IT, CD-KC, CD-KG, CD-KL, CD-KS, CD-LO, CD-LU, CD-MN, CD-MO, CD-NU, CD-SA, CD-SU, CD-TA, CD-TO, CD-TU; update List Source.",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CD)."
},
{
"Code/Subdivision Change": "Codes: CD-HC Haut-Congo -> CD-OR Orientale.",
"Description of Change": "One subdivision name changed. Generic name of subdivisions changed. New reference in the list source.",
"Date Issued": "2002-05-21",
"Edition/Newsletter": "Newsletter I-2 (https://web.archive.org/web/20120131102127/http://www.iso.org/iso/iso_3166-2_newsletter_i-2_en.pdf)."
}
],
"CF": [
{
"Code/Subdivision Change": "Correct French full name and local short name to align with ISO 3166-2.",
"Description of Change": "",
"Date Issued": "2012-02-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CF)."
},
{
"Code/Subdivision Change": "Consistency between ISO 3166-1 and ISO 3166-2, addition of names in administrative languages, and update of the administrative structure and of the list source.",
"Description of Change": "",
"Date Issued": "2010-06-30",
"Edition/Newsletter": "Newsletter II-2 (https://www.iso.org/files/live/sites/isoorg/files/archive/pdf/en/iso_3166-2_newsletter_ii-2_2010-06-30.pdf)."
},
{
"Code/Subdivision Change": "Addition of administrative language Sango (sg, sag).",
"Description of Change": "",
"Date Issued": "2009-01-07",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CF)."
}
],
"CG": [
{
"Code/Subdivision Change": "Correction of the OBP entry error as follows: change of the font character from a dash to a hyphen in the name for Pointe-Noire.",
"Description of Change": "",
"Date Issued": "2015-02-26",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CG)."
},
{
"Code/Subdivision Change": "Add 1 department CG-16.",
"Description of Change": "",
"Date Issued": "2015-02-12",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CG)."
},
{
"Code/Subdivision Change": "Alignment of the English short name lower case with UNTERM.",
"Description of Change": "",
"Date Issued": "2014-12-18",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CG)."
},
{
"Code/Subdivision Change": "Change Subdivision category ‘region’ to ‘department’; change ‘capital’ to ‘department’; update List Source.",
"Description of Change": "",
"Date Issued": "2014-10-29",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CG)."
}
],
"CH": [
{
"Code/Subdivision Change": "Deletion of canton CH-GR in fra; Update List Source.",
"Description of Change": "",
"Date Issued": "2020-11-24",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CH)."
},
{
"Code/Subdivision Change": "Spelling correction of CH-AI and CH-AR. New list source.",
"Description of Change": "",
"Date Issued": "2003-09-05",
"Edition/Newsletter": "Newsletter I-5 (https://web.archive.org/web/20081218103244/http://www.iso.org/iso/iso_3166-2_newsletter_i-5_en.pdf)."
}
],
"CI": [
{
"Code/Subdivision Change": "Correction of the French full name.",
"Description of Change": "",
"Date Issued": "2022-09-02",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CI)."
},
{
"Code/Subdivision Change": "Update Code Source.",
"Description of Change": "",
"Date Issued": "2016-11-15",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CI)."
},
{
"Code/Subdivision Change": "Deletion of all regions CI-01 to CI-19; addition of districts CI-BS, CI-CM, CI-DN, CI-GD, CI-LC, CI-LG, CI-MG, CI-SM, CI-SV, CI-VB, CI-WR, CI-ZZ; addition of autonomous districts CI-AB, CI-YM; update List Source.",
"Description of Change": "",
"Date Issued": "2015-11-27",
"Edition/Newsletter": "Online Browsing Platform (OBP) - (https://www.iso.org/obp/ui/#iso:code:3166:CI)."
},
{
"Code/Subdivision Change": "Subdivisions added: CI-17 Bafing CI-18 Fromager CI-19 Moyen-Cavally.",
"Description of Change": "Modification of the administrative structure.",
"Date Issued": "2007-04-17",
"Edition/Newsletter": "Newsletter I-8 (https://web.archive.org/web/20081218103230/http://www.iso.org/iso/iso_3166-2_newsletter_i-8_en.pdf)."
}