-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGC-info.json
More file actions
1812 lines (1812 loc) · 94.1 KB
/
Copy pathGC-info.json
File metadata and controls
1812 lines (1812 loc) · 94.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"File PATH": "/json_data/Annotated_CRC_CEDAW-GC18-Harmful-REV.json",
"Name": "[REVISED] Joint General Recommendation No. 31 of the CEDAW / General Comment No. 18 of the CRC: Harmful practices",
"Simplified Name": "CRC GC18/CEDAW GR31: Harmful practices [Revised]",
"Signature": "CEDAW/C/GC/31/Rev.1–CRC/C/GC/18/Rev.1",
"Adoption Date": "8 May 2019",
"Adoption Year": 2019,
"Committee": "CRC, CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F31%2FREV.1&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC19-Budget.json",
"Name": "General Comment No. 19: Public budgeting for the realization of children’s rights (art. 4)",
"Simplified Name": "GC19: Public budgeting for the realization of children’s rights",
"Signature": "CRC/C/GC/19",
"Adoption Date": "20 July 2016",
"Adoption Year": 2016,
"Committee": "CRC",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/general-comment-no-19-2016-public-budgeting"
},
{
"File PATH": "/json_data/Annotated_CRC-GC20-Adolescence.json",
"Name": "General Comment No. 20: Implementation of the rights of the child during adolescence",
"Simplified Name": "GC20: Implementation of the rights of the child during adolescence",
"Signature": "CRC/C/GC/20",
"Adoption Date": "6 December 2016",
"Adoption Year": 2016,
"Committee": "CRC",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/general-comment-no-20-2016-implementation-rights"
},
{
"File PATH": "/json_data/Annotated_CRC-GC21-Street.json",
"Name": "General Comment No. 21: Children in street situations",
"Simplified Name": "GC21: Children in street situations",
"Signature": "CRC/C/GC/21",
"Adoption Date": "21 June 2017",
"Adoption Year": 2017,
"Committee": "CRC",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/general-comment-no-21-2017-children-street"
},
{
"File PATH": "/json_data/Annotated_CRC-GC24-Justice.json",
"Name": "General Comment No. 24: Children’s rights in the child justice system",
"Simplified Name": "GC24: Children’s rights in the child justice system",
"Signature": "CRC/C/GC/24",
"Adoption Date": "18 September 2019",
"Adoption Year": 2019,
"Committee": "CRC",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/general-comment-no-24-2019-childrens-rights-child"
},
{
"File PATH": "/json_data/Annotated_CRC-GC25-Digital.json",
"Name": "General Comment No. 25: Children’s rights in relation to the digital environment",
"Simplified Name": "GC25: Children’s rights in relation to the digital environment",
"Signature": "CRC/C/GC/25",
"Adoption Date": "2 March 2021",
"Adoption Year": 2021,
"Committee": "CRC",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/general-comment-no-25-2021-childrens-rights-relation"
},
{
"File PATH": "/json_data/Annotated_CRC-GC26-Climate.json",
"Name": "General Comment No. 26 on children’s rights and the environment, with a special focus on climate change",
"Simplified Name": "GC26: Children’s rights and the environment, with a special focus on climate change",
"Signature": "\tCRC/C/GC/26",
"Adoption Date": "22 August 2023",
"Adoption Year": 2023,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F26&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-CMW-GC22-MigPrinciples.json",
"Name": "Joint General Comment No. 3 of the CMW / No. 22 of the CRC: International migration - States parties’ obligations in particular with respect to countries of transit and destination",
"Simplified Name": "CRC GC22/CMW GC3: International migration - countries of transit and destination",
"Signature": "CRC/C/GC/22, CMW/C/GC/3",
"Adoption Date": "16 November 2019",
"Adoption Year": 2019,
"Committee": "CRC, CMW",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/joint-general-comment-no-3-cmw-and-no-22-crc-context"
},
{
"File PATH": "/json_data/Annotated_CRC-CMW-GC23-Migration.json",
"Name": "Joint General Comment No. 4 of the CMW / No. 23 of the CRC: International migration - general principles",
"Simplified Name": "CRC GC23/CMW GC4: International migration - general principles",
"Signature": "CRC/C/GC/23, CMW/C/GC/4",
"Adoption Date": "16 November 2019",
"Adoption Year": 2019,
"Committee": "CRC, CMW",
"Link": "https://www.ohchr.org/en/documents/general-comments-and-recommendations/joint-general-comment-no-4-cmw-and-no-23-crc-2017"
},
{
"File PATH": "/json_data/Annotated_CRC-GC1-AimsEd.json",
"Name": "General Comment No. 1: The Aims of Education",
"Simplified Name": "GC1: The aims of education",
"Signature": "CRC/GC/2001/1",
"Adoption Date": "17 April 2001",
"Adoption Year": 2001,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2001%2F1&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC2-NHRI.json",
"Name": "General Comment No. 2: The Role of Independent National Human Rights Institutions in the Protection and Promotion of the Rights of the Child",
"Simplified Name": "GC2: The role of independent NHRIs",
"Signature": "CRC/GC/2002/2",
"Adoption Date": "15 November 2002",
"Adoption Year": 2002,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2002%2F2&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC3-HivAids.json",
"Name": "General Comment No. 3: HIV/AIDS and the rights of the children",
"Simplified Name": "GC3: HIV/AIDS and the rights of the children",
"Signature": "CRC/GC/2003/3",
"Adoption Date": "17 March 2003",
"Adoption Year": 2003,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2003%2F3&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC4-AdolHealth.json",
"Name": "General Comment No. 4: Adolescent health and development in the context of the Convention on the Rights of the Child",
"Simplified Name": "GC4: Adolescent health and development",
"Signature": "CRC/GC/2003/4",
"Adoption Date": "21 July 2003",
"Adoption Year": 2003,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2003%2F4&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC5-Implementation.json",
"Name": "General Comment No. 5: General Measures of Implementation of the Convention on the Rights of the Child",
"Simplified Name": "GC5: General measures of implementation of the CRC",
"Signature": "CRC/GC/2003/5",
"Adoption Date": "3 October 2003",
"Adoption Year": 2003,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2003%2F5&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC6-UASC.json",
"Name": "General Comment No. 6: Treatment of Unaccompanied and Separated Children Outside Their Country of Origin",
"Simplified Name": "GC6: Treatment of unaccompanied and separated children outside their country of origin",
"Signature": "CRC/GC/2003/6",
"Adoption Date": "1 September 2005",
"Adoption Year": 2005,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FGC%2F2005%2F6&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC7-Childhood.json",
"Name": "General Comment No. 7: Implementing child rights in early childhood",
"Simplified Name": "GC7: Implementing child rights in early childhood",
"Signature": "CRC/C/GC/7/Rev.1",
"Adoption Date": "20 September 2006",
"Adoption Year": 2006,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F7%2FRev.1&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC8-Punishment.json",
"Name": "General Comment No. 8: The right of the child to protection from corporal punishment and other cruel or degrading forms of punishment (arts. 19; 28, para. 2; and 37, inter alia)",
"Simplified Name": "GC8: Protection from corporal punishment and other cruel or degrading forms of punishment ",
"Signature": "CRC/C/GC/8",
"Adoption Date": "2 March 2007",
"Adoption Year": 2006,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F8&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC9-Disabilities.json",
"Name": "General Comment No. 9: The rights of children with disabilities",
"Simplified Name": "GC9: The rights of children with disabilities",
"Signature": "CRC/C/GC/9/Corr.1",
"Adoption Date": "27 February 2007",
"Adoption Year": 2007,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F9%2FCorr.1&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC10-Justice.json",
"Name": "General Comment No. 10: Children’s rights in juvenile justice",
"Simplified Name": "GC10: Children’s rights in juvenile justice",
"Signature": "CRC/C/GC/10",
"Adoption Date": "25 April 2007",
"Adoption Year": 2007,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F10&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC11-Indigenous.json",
"Name": "General Comment No. 11: Indigenous children and their rights under the Convention",
"Simplified Name": "GC11: Indigenous children",
"Signature": "CRC/C/GC/11",
"Adoption Date": "12 February 2009",
"Adoption Year": 2009,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F11&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC12-Heard.json",
"Name": "General Comment No. 12: The right of the child to be heard ",
"Simplified Name": "GC12: The right of the child to be heard ",
"Signature": "CRC/C/GC/12",
"Adoption Date": "20 July 2009",
"Adoption Year": 2009,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F12&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC13-Violence.json",
"Name": "General Comment No. 13: The right of the child to freedom from all forms of violence",
"Simplified Name": "GC13: The right of the child to freedom from all forms of violence",
"Signature": "CRC/C/GC/13",
"Adoption Date": "18 April 2011",
"Adoption Year": 2011,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F13&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC14-BestInt.json",
"Name": "General Comment No. 14 on the right of the child to have his or her best interests taken as a primary consideration (art. 3, para. 1)",
"Simplified Name": "GC14: The right of the child to have his or her best interests taken as a primary consideration",
"Signature": "CRC/C/GC/14",
"Adoption Date": "29 May 2013",
"Adoption Year": 2013,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F14&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC15-Health.json",
"Name": "General Comment No. 15 on the right of the child to the enjoyment of the highest attainable standard of health (art. 24)",
"Simplified Name": "GC15: The right of the child to the enjoyment of the highest attainable standard of health",
"Signature": "CRC/C/GC/15",
"Adoption Date": "17 April 2013",
"Adoption Year": 2013,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F15&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC16-Business.json",
"Name": "General Comment No. 16 on State obligations regarding the impact of the business sector on children’s rights",
"Simplified Name": "GC16: Impact of the business sector on children’s rights",
"Signature": "CRC/C/GC/16",
"Adoption Date": "17 April 2013",
"Adoption Year": 2013,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F16&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC17-Leisure.json",
"Name": "General Comment No. 17 on the right of the child to rest, leisure, play, recreational activities, cultural life and the arts (art. 31)",
"Simplified Name": "GC17: The right of the child to rest, leisure, play, recreational activities, cultural life and the arts",
"Signature": "CRC/C/GC/17",
"Adoption Date": "17 April 2013",
"Adoption Year": 2013,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CRC%2FC%2FGC%2F17&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CRC-GC18-Harmful.json",
"Name": "Joint General Comment No. 18 of the CRC on harmful practices and General Recommendation No. 31 of the CEDAW",
"Simplified Name": "CRC GC18/CEDAW GR31: Harmful practices",
"Signature": "CEDAW/C/GC/31/CRC/C/GC/18",
"Adoption Date": "8 May 2019",
"Adoption Year": 2019,
"Committee": "CRC",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F31%2FCRC%2FC%2FGC%2F18&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC26-Land.json",
"Name": "General Comment No. 26 on Land and economic, social and cultural rights",
"Simplified Name": "GC26: Land and economic, social and cultural rights",
"Signature": "E/C.12/GC/26",
"Adoption Date": "4 January 2023",
"Adoption Year": 2023,
"Committee": "CESCR",
"Link": "https://undocs.org/Home/Mobile?FinalSymbol=E%2FC.12%2FGC%2F26&Language=E&DeviceType=Desktop&LangRequested=False"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC25-Science.json",
"Name": "General Comment No. 25 on article 15: science and economic, social and cultural rights",
"Simplified Name": "GC25: Science and economic, social and cultural rights",
"Signature": "E/C.12/GC/25",
"Adoption Date": "6 March 2020",
"Adoption Year": 2020,
"Committee": "CESCR",
"Link": "https://undocs.org/Home/Mobile?FinalSymbol=E%2FC.12%2FGC%2F25&Language=E&DeviceType=Desktop&LangRequested=False"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC24-Business.json",
"Name": "General Comment No. 24 on State obligations under the International Covenant on Economic, Social and Cultural Rights in the context of business activities",
"Simplified Name": "GC25: State obligations under ICESCR in the context of business activities",
"Signature": "E/C.12/GC/24",
"Adoption Date": "23 June 2017",
"Adoption Year": 2017,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F24&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC23-CondWork.json",
"Name": "General Comment No. 23 on the right to just and favourable conditions of work (article 7 of the International Covenant on Economic, Social and Cultural Rights)",
"Simplified Name": "GC23: Right to just and favourable conditions of work",
"Signature": "E/C.12/GC/23",
"Adoption Date": "4 March 2016",
"Adoption Year": 2016,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F23&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC22-SexHealth.json",
"Name": "General Comment No. 22 on the right to sexual and reproductive health (article 12 of the International Covenant on Economic, Social and Cultural Rights)",
"Simplified Name": "GC22: Right to sexual and reproductive health",
"Signature": "E/C.12/GC/22",
"Adoption Date": "4 March 2016",
"Adoption Year": 2016,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F22&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC21-Culture.json",
"Name": "General Comment No. 21: Right of everyone to take part in cultural life",
"Simplified Name": "GC21: Right of everyone to take part in cultural life",
"Signature": "E/C.12/GC/21",
"Adoption Date": "17 May 2010",
"Adoption Year": 2010,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F21&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC20-NonDiscESC.json",
"Name": "General Comment No. 20: Non-discrimination in economic, social and cultural rights",
"Simplified Name": "GC20: Non-discrimination in economic, social and cultural rights",
"Signature": "E/C.12/GC/20",
"Adoption Date": "2 July 2009",
"Adoption Year": 2009,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F20&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC19-SocSecurity.json",
"Name": "General Comment No. 19: The right to social security (art. 9)",
"Simplified Name": "GC19: Right to social security",
"Signature": "E/C.12/GC/19",
"Adoption Date": "4 February 2008",
"Adoption Year": 2008,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F19&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC18-Work.json",
"Name": "General Comment No. 18: Article 6 of the International Covenant on Economic, Social and Cultural Rights",
"Simplified Name": "GC18: Article 6 of the ICESCR",
"Signature": "E/C.12/GC/18",
"Adoption Date": "6 February 2006",
"Adoption Year": 2006,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F18&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC17-Author.json",
"Name": "General Comment No. 17: The right of everyone to benefit from the protection of the moral and material interests resulting from any scientific, literary or artistic production of which he or she is the author",
"Simplified Name": "GC17: The right of everyone to benefit from the protection of the interests resulting from any production of which he or she is the author",
"Signature": "E/C.12/GC/17",
"Adoption Date": "12 January 2006",
"Adoption Year": 2006,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2FGC%2F17&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC16-Equality.json",
"Name": "General Comment No. 16: The equal right of men and women to the enjoyment of all economic, social and cultural rights (art. 3 of the International Covenant on Economic, Social and Cultural Rights)",
"Simplified Name": "GC16: Equal right of men and women to the enjoyment of all economic, social and cultural rights",
"Signature": "E/C.12/2005/4",
"Adoption Date": "11 August 2005",
"Adoption Year": 2005,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F2005%2F4&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC15-Water.json",
"Name": "General Comment No. 15: The right to water",
"Simplified Name": "GC15: The Right to water",
"Signature": "E/C.12/2002/11",
"Adoption Date": "20 January 2003",
"Adoption Year": 2003,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F2002%2F11&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC14-Health.json",
"Name": "General Comment No. 14: The right to the highest attainable standard of health",
"Simplified Name": "GC14: Right to the highest attainable standard of health",
"Signature": "E/C.12/2000/4",
"Adoption Date": "11 August 2000",
"Adoption Year": 2000,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F2000%2F4&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC13-Education.json",
"Name": "General Comment No. 13 (Twenty-first session, 1999), The right to education (article 13 of the Covenant)",
"Simplified Name": "GC13: Right to education",
"Signature": "E/C.12/1999/10",
"Adoption Date": "8 December 1999",
"Adoption Year": 1999,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1999%2F10&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC12-Food.json",
"Name": "General Comment No. 12: The right to adequate food (Art.11)",
"Simplified Name": "GC12: Right to adequate food ",
"Signature": "E/C.12/1999/5",
"Adoption Date": "12 May 1999",
"Adoption Year": 1999,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1999%2F5&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC11-PrimEducation.json",
"Name": "General Comment No. 11: Plans of action for primary education (art.14)",
"Simplified Name": "GC11: Plans of action for primary education",
"Signature": "E/C.12/1999/4",
"Adoption Date": "11 May 1999",
"Adoption Year": 1999,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1999%2F4&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC10-NHRI.json",
"Name": "General Comment No. 10: The role of national human rights institutions in the protection of economic, social and cultural rights",
"Simplified Name": "GC10: The role of NHRIs in the protection of economic, social and cultural rights",
"Signature": "E/C.12/1998/25",
"Adoption Date": "14 December 1998",
"Adoption Year": 1998,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1998%2F25&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC9-DomesticApp.json",
"Name": "General Comment No. 9: The domestic application of the Covenant",
"Simplified Name": "GC9: The domestic application of the Covenant",
"Signature": "E/C.12/1998/24",
"Adoption Date": "3 December 1998",
"Adoption Year": 1998,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1998%2F24&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC8-Sanctions.json",
"Name": "General Comment No. 8: The relationship between economic sanctions and respect for economic, social and cultural rights",
"Simplified Name": "GC8: The relationship between economic sanctions and respect for economic, social and cultural rights",
"Signature": "E/C.12/1997/8",
"Adoption Date": "12 December 1997",
"Adoption Year": 1997,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=E%2FC.12%2F1997%2F8&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC7-Evictions.json",
"Name": "General Comment No. 7: The right to adequate housing (art. 11 (1) of the Covenant): Forced evictions",
"Simplified Name": "GC7: Right to adequate housing - Forced evictions",
"Signature": "E/1998/22",
"Adoption Date": "16 May 1997",
"Adoption Year": 1997,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F6430&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC6-Older.json",
"Name": "General Comment No. 6: The economic, social and cultural rights of older persons",
"Simplified Name": "GC6: The economic, social and cultural rights of older persons",
"Signature": "E/1996/22",
"Adoption Date": "8 December 1995",
"Adoption Year": 1995,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F6429&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC5-NonDisc.json",
"Name": "General Comment No. 5: Persons with disabilities",
"Simplified Name": "GC5: Persons with disabilities",
"Signature": "E/1995/22",
"Adoption Date": "9 December 1994",
"Adoption Year": 1994,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F4760&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC4-Housing.json",
"Name": "General Comment No. 4: The right to adequate housing (art. 11 (1) of the Covenant)",
"Simplified Name": "GC4: right to adequate housing",
"Signature": "E/1992/23",
"Adoption Date": "13 December 1991",
"Adoption Year": 1991,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F4759&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC3-Obligations.json",
"Name": "General Comment No. 3: The nature of States parties obligations (Art. 2, par. 1)",
"Simplified Name": "GC3: The nature of States parties obligations",
"Signature": "E/1991/23",
"Adoption Date": "14 December 1990",
"Adoption Year": 1990,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F4758&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC2-IntAssistance.json",
"Name": "General Comment No. 2: International technical assistance measures (Art. 22)",
"Simplified Name": "GC2: International technical assistance measures ",
"Signature": "E/1990/23",
"Adoption Date": "2 February 1990",
"Adoption Year": 1990,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F4757&Lang=en"
},
{
"File PATH": "/json_data/Annotated_ESCR-GC1-GenCom.json",
"Name": "General Comment No. 1: Reporting by States parties ",
"Simplified Name": "GC1: Reporting by States parties ",
"Signature": "E/1989/22",
"Adoption Date": "27 July 1981",
"Adoption Year": 1981,
"Committee": "CESCR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCESCR%2FGEC%2F4756&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GC39-Indigenous.json",
"Name": "General recommendation No. 39 (2022) on the rights of Indigenous women and girls",
"Simplified Name": "GR39: Indigenous women and girls ",
"Signature": "CEDAW/C/GC/39",
"Adoption Date": "31 October 2022",
"Adoption Year": "2022",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F39&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GC38-Trafficking.json",
"Name": "General recommendation No. 38 (2020) on trafficking in women and girls in the context of global migration ",
"Simplified Name": "GR:38: trafficking in women and girls in the context of global migration ",
"Signature": "CEDAW/C/GC/38",
"Adoption Date": "20 November 2020",
"Adoption Year": "2020",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F38&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GC37-Climate.json",
"Name": "General Recommendation No. 37 on Gender-related dimensions of disaster risk reduction in the context of climate change",
"Simplified Name": "GR37: Gender-related dimensions of disaster risk reduction in the context of climate change",
"Signature": "CEDAW/C/GC/37",
"Adoption Date": "13 March 2018",
"Adoption Year": "2018",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F37&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GC36-Education.json",
"Name": "General recommendation No. 36 (2017) on the right of girls and women to education ",
"Simplified Name": "GR36: the right of girls and women to education ",
"Signature": "CEDAW/C/GC/36",
"Adoption Date": "27 November 2017",
"Adoption Year": "2017",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F36&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR35-GBV.json",
"Name": "General recommendation No. 35 on gender-based violence against women, updating general recommendation No. 19",
"Simplified Name": "GR35: gender-based violence against women",
"Signature": "CEDAW/C/GC/35",
"Adoption Date": "26 July 2017",
"Adoption Year": "2017",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F35&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR34-rural.json",
"Name": "General recommendation No. 34 on the rights of rural women",
"Simplified Name": "GR34: the rights of rural women",
"Signature": "CEDAW/C/GC/34",
"Adoption Date": "7 March 2016",
"Adoption Year": "2016",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F34&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR33-access_to_justice.json",
"Name": "General recommendation No. 33 on women's access to justice",
"Simplified Name": "GR33: women's access to justice",
"Signature": "CEDAW/C/GC/33",
"Adoption Date": "3 August 2015",
"Adoption Year": "2015",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F33&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR32-refugee.json",
"Name": "General recommendation No. 32 on the gender-related dimensions of refugee status, asylum, nationality and statelessness of women",
"Simplified Name": "GR32: gender-related dimensions of refugee status, asylum, nationality and statelessness of women",
"Signature": "CEDAW/C/GC/32",
"Adoption Date": "14 November 2014",
"Adoption Year": "2014",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F32&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR30-conflict.json",
"Name": "General recommendation No. 30 on women in conflict prevention, conflict and post-conflict situations",
"Simplified Name": "GR30: women in conflict prevention, confilct and post-conflict situations",
"Signature": "CEDAW/C/GC/30",
"Adoption Date": "1 November 2013",
"Adoption Year": "2013",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F30&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR29-Article16.json",
"Name": "General recommendation No. 29 on article 16 of the Convention on the Elimination of All Forms of Discrimination against Women (Economic consequences of marriage, family relations and their dissolution)",
"Simplified Name": "GR29: Article 16 - Economic consequences of marriage, family relations and their dissolution",
"Signature": "CEDAW/C/GC/29",
"Adoption Date": "13 October 2013",
"Adoption Year": "2013",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F29&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR28-art.2.json",
"Name": "General recommendation No. 28 on the core obligations of States parties under article 2 of the Convention on the Elimination of All Forms of Discrimination against Women ",
"Simplified Name": "GR28: the core obligations of States parties under article 2",
"Signature": "CEDAW/C/GC/28",
"Adoption Date": "16 December 2010",
"Adoption Year": "2010",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F28&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR27-older_women.json",
"Name": "General recommendation No. 27: Older women and protection of their human rights",
"Simplified Name": "GR27: older women and protection of their human rights",
"Signature": "CEDAW/C/GC/27",
"Adoption Date": "16 December 2010",
"Adoption Year": "2010",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2FGC%2F27&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR26-migrants.json",
"Name": "General recommendation No. 26 on women migrant workers",
"Simplified Name": "GR26: women migrant workers",
"Signature": "CEDAW/2009/WP.1/R",
"Adoption Date": "5 December 2008",
"Adoption Year": "2008",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CEDAW%2FC%2F2009%2FWP.1%2FR&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR25-TSM2.json",
"Name": "General recommendation No. 25: Article 4, paragraph 1, of the Convention (temporary special measures)",
"Simplified Name": "GR25: temporary special measures",
"Signature": "A/59/38",
"Adoption Date": "23 July 2004",
"Adoption Year": "2004",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3733&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR24-health.json",
"Name": "General recommendation No. 24: Article 12 of the Convention (women and health)",
"Simplified Name": "GR24: women and health ",
"Signature": "A/54/38/Rev.1, chap. 1",
"Adoption Date": "5 February 1999",
"Adoption Year": "1999",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4738&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR23-political_public_life.json",
"Name": "General recommendation No. 23: Political and public life",
"Simplified Name": "GR23: political and public life",
"Signature": "A/52/38",
"Adoption Date": "12 August 1997",
"Adoption Year": "1997",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/TBSearch.aspx?Lang=en&TreatyID=3&DocTypeID=11"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR22-amendingArt22.json",
"Name": "General recommendation No. 22: Amending Article 20 of the Convention",
"Simplified Name": "GR22: amending article 20 ",
"Signature": "A/50/38",
"Adoption Date": "18 July 1996",
"Adoption Year": "1996",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4734&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR21-family.json",
"Name": "General recommendation No. 21: Equality in marriage and family relations",
"Simplified Name": "GR21: equality in marriage and family relations",
"Signature": "A/49/38",
"Adoption Date": "12 April 1994",
"Adoption Year": "1994",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4733&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW-GR20-reservations.json",
"Name": "General recommendation No. 20: Reservations to the Convention ",
"Simplified Name": "GR20: reservations to the convention",
"Signature": "A/47/38",
"Adoption Date": "30 January 1992",
"Adoption Year": "1992",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4730&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR19_violence.json",
"Name": "General recommendation No. 19: Violence against women",
"Simplified Name": "GR19: violence against women",
"Signature": "A/47/38",
"Adoption Date": "30 January 1992",
"Adoption Year": "1992",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3731&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR18_disabled.json",
"Name": "General recommendation No. 18: Disabled women",
"Simplified Name": "GR18: disabled women ",
"Signature": "A/46/38",
"Adoption Date": "30 January 1992",
"Adoption Year": "1992",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4729&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR17_measurement.json",
"Name": "General recommendation No. 17: Measurement and quantification of the unremunerated domestic activities of women and their recognition in the gross national product",
"Simplified Name": "GR17: Measurement and quantification of the unremunerated domestic activities of women and their recognition in the gross national product",
"Signature": "A/46/38",
"Adoption Date": "30 January 1992",
"Adoption Year": "1992",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5833&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR16_unpaid_women_workers.json",
"Name": "General recommendation No. 16: Unpaid women workers in rural and urban family enterprises",
"Simplified Name": "GR16: unpaid women workers in rural and urban family enterprises",
"Signature": "A/46/38",
"Adoption Date": "30 January 1992",
"Adoption Year": "1992",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3730&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR15_AIDS.json",
"Name": "General recommendation No. 15: Avoidance of discrimination against women in national strategies for the prevention and control of acquires immunodeficiency syndrom (AIDS)",
"Simplified Name": "GR15: avoidance of discrimination against women in national strategies for the prevention and control of AIDS",
"Signature": "A/45/38",
"Adoption Date": "6 June 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4726&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR14_circumcision.json",
"Name": "General recommendation No. 14: Female circumcision ",
"Simplified Name": "GR14: female circumcision",
"Signature": "A/45/38",
"Adoption Date": "6 June 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3729&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR13_remuneration.json",
"Name": "General recommendation No. 13: Equal remuneration for work of equal value",
"Simplified Name": "GR13: equal remuneration for work of equal value",
"Signature": "A/44/38",
"Adoption Date": "13 February 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5832&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR12_VAW.json",
"Name": "General recommendation No. 12: Violence against women ",
"Simplified Name": "GR12: violence against women",
"Signature": "A/44/38",
"Adoption Date": "13 February 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5831&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR11_technical_advisory_services.json",
"Name": "General recommendation No. 11: Technical advisory services for reporting obligations",
"Simplified Name": "GR11: technical advisory services for reporting obligations",
"Signature": "A/44/38",
"Adoption Date": "13 February 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5830&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR10_tenth_anniversary.json",
"Name": "General recommendation No. 10: Tenth anniversary of the adoption of CEDAW",
"Simplified Name": "GR10: tenth anniversary of the adoption of CEDAW",
"Signature": "A/44/38",
"Adoption Date": "13 February 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3728&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR9_statisticaldata.json",
"Name": "General recommendation No. 9: Statistical data",
"Simplified Name": "GR9: statistical data",
"Signature": "A/44/38",
"Adoption Date": "13 February 1990",
"Adoption Year": "1990",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3724&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR8_art.8.json",
"Name": "General recommendation No. 8: Implementation of article 8 of the Convention ",
"Simplified Name": "GR8: implementation of article 8 of the Convention ",
"Signature": "A/43/38",
"Adoption Date": "14 June 1988",
"Adoption Year": "1988",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3727&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR7_resources.json",
"Name": "General recommendation No. 7: Resources",
"Simplified Name": "GR7: resources",
"Signature": "A/43/38",
"Adoption Date": "14 June 1988",
"Adoption Year": "1988",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5829&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR6_national_machinery.json",
"Name": "General recommendation No. 6: Effective national machinery and publicity",
"Simplified Name": "GR6: effective national machinery and publicity",
"Signature": "A/43/38",
"Adoption Date": "14 June 1988",
"Adoption Year": "1988",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5828&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR5_TSM1.json",
"Name": "General recommendation No. 5: temporary special measures",
"Simplified Name": "GR5: temporary special measures",
"Signature": "A/43/38",
"Adoption Date": "14 June 1988",
"Adoption Year": "1988",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5827&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR4_reservations.json",
"Name": "General recommendation No. 4: Reservations",
"Simplified Name": "GR4: reservations",
"Signature": "A/42/38",
"Adoption Date": "15 May 1987",
"Adoption Year": "1987",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5826&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR3_campaigns_edu.json",
"Name": "General recommendation No. 3: Education and public information programmes ",
"Simplified Name": "GR3: education and public information programmes",
"Signature": "A/42/38",
"Adoption Date": "15 May 1987",
"Adoption Year": "1987",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F5825&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR2_reporting.json",
"Name": "General recommendation No. 2: Reporting guidelines",
"Simplified Name": "GR2: reporting guidelines",
"Signature": "A/42/38",
"Adoption Date": "15 May 1987",
"Adoption Year": "1987",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F3726&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CEDAW_GR1_Reporting.json",
"Name": "General recommendation No. 1: Reporting by States Parties",
"Simplified Name": "GR1: reporting by States Parties",
"Signature": "A/41/38",
"Adoption Date": "4 April 1986",
"Adoption Year": "1986",
"Committee": "CEDAW",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=INT%2FCEDAW%2FGEC%2F4724&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC37_assembly.json",
"Name": "General Comment No. 37 (2020) on the right of peaceful assembly (article 21)",
"Simplified Name": "GC37: the right of peaceful assembly (article 21)",
"Signature": "CCPR/C/GC/37",
"Adoption Date": "17 September 2020",
"Adoption Year": 2020,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F37&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC36_life.json",
"Name": "General Comment No. 36: Article 6: right to life",
"Simplified Name": "GC36: article 6: right to life",
"Signature": "CCPR/C/GC/36",
"Adoption Date": "3 September 2019",
"Adoption Year": 2019,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F36&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC35_article9.json",
"Name": "General Comment No. 35: Article 9 (Liberty and security of a person)",
"Simplified Name": "GC35: article 9 (liberty and security of a person)",
"Signature": "CCPR/C/GC/35",
"Adoption Date": "16 December 2014",
"Adoption Year": 2014,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F35&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC34_expression.json",
"Name": "General Comment No. 34: Article 19: Freedoms of opinion and expression",
"Simplified Name": "GC34: article 19: freedoms of opinion and expression",
"Signature": "CCPR/C/GC/34",
"Adoption Date": "12 September 2011",
"Adoption Year": 2011,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F34&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC33_optional_protocol.json",
"Name": "General Comment No. 33: Obligation of States under Optional Protocol to the International Covenant on Civil and Political Rights",
"Simplified Name": "GC33: obligation of States parties under the Optional Protocol to the Covenant",
"Signature": "CCPR/C/GC/33",
"Adoption Date": "25 June 2009",
"Adoption Year": 2009,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F33&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC32_article14.json",
"Name": "General Comment No. 32: Article 14: Right to equality before courts and tribunals and to a fair trial",
"Simplified Name": "GC32: article 14: right to equality before courts and tribunals and to a fair trial",
"Signature": "CCPR/C/GC/32",
"Adoption Date": "23 August 2007",
"Adoption Year": 2007,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2FGC%2F32&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC31_nature_of_obligations.json",
"Name": "General Comment No. 31: The Nature of General Legal Obligation Imposed on States Parties to the Covenant",
"Simplified Name": "GC31: the nature of general legal obligation imposed on states parties to the Covenant",
"Signature": "CCPR/C/21/Rev.1/Add. 1326 May 2004",
"Adoption Date": "29 March 2004",
"Adoption Year": 2004,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2F21%2FRev.1%2FAdd.13&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC30_reporting.json",
"Name": "General Comment No. 30: Reporting Obligations of States parties under article 40 of the Covenant",
"Simplified Name": "GC30: reporting obligations of states parties under article 40 of the Covenant",
"Signature": "CCPR/C/21/Rev.1/Add. 12",
"Adoption Date": "16 July 2002",
"Adoption Year": 2002,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2F21%2FRev.2%2FAdd.12&Lang=en"
},
{
"File PATH": "/json_data/Annotated_CCPR_GC29_emergency.json",
"Name": "General Comment No. 29: states of emergency (article 4)",
"Simplified Name": "GC29: states of emergency (article 4)",
"Signature": "CCPR/C/21/Rev.1/Add. 11",
"Adoption Date": "31 August 2001",
"Adoption Year": 2001,
"Committee": "CCPR",
"Link": "https://tbinternet.ohchr.org/_layouts/15/treatybodyexternal/Download.aspx?symbolno=CCPR%2FC%2F21%2FRev.1%2FAdd.11&Lang=en"